From f120197c218c8077e62c2b8c39990600bea13e3e Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 5 Jul 2018 20:41:17 -0700 Subject: [PATCH] Fix ComputerModel.paired --- app/gui/computermodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/gui/computermodel.cpp b/app/gui/computermodel.cpp index 284b0346..2d5ea826 100644 --- a/app/gui/computermodel.cpp +++ b/app/gui/computermodel.cpp @@ -39,7 +39,7 @@ QVariant ComputerModel::data(const QModelIndex& index, int role) const case OnlineRole: return computer->state == NvComputer::CS_ONLINE; case PairedRole: - return computer->state == NvComputer::PS_PAIRED; + return computer->pairState == NvComputer::PS_PAIRED; case BusyRole: return computer->currentGameId != 0; case AddPcRole: