Connecting to clicked instead of pressed on KCM's buttons
This commit is contained in:
parent
ef70772f70
commit
567796231b
1 changed files with 4 additions and 4 deletions
|
@ -68,13 +68,13 @@ KdeConnectKcm::KdeConnectKcm(QWidget *parent, const QVariantList&)
|
|||
this, SLOT(resetSelection()));
|
||||
connect(kcmUi->deviceList, SIGNAL(pressed(QModelIndex)),
|
||||
this, SLOT(deviceSelected(QModelIndex)));
|
||||
connect(kcmUi->pair_button, SIGNAL(pressed()),
|
||||
connect(kcmUi->pair_button, SIGNAL(clicked()),
|
||||
this, SLOT(requestPair()));
|
||||
connect(kcmUi->unpair_button, SIGNAL(pressed()),
|
||||
connect(kcmUi->unpair_button, SIGNAL(clicked()),
|
||||
this, SLOT(unpair()));
|
||||
connect(kcmUi->ping_button, SIGNAL(pressed()),
|
||||
connect(kcmUi->ping_button, SIGNAL(clicked()),
|
||||
this, SLOT(sendPing()));
|
||||
connect(kcmUi->refresh_button,SIGNAL(pressed()),
|
||||
connect(kcmUi->refresh_button,SIGNAL(clicked()),
|
||||
this, SLOT(refresh()));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue