mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-17 13:24:15 -05:00
fixed effect of selecting known/signed IDs in circle creation dialog
This commit is contained in:
parent
4cf57d64d8
commit
83e39d8ae5
@ -83,9 +83,9 @@ CreateCircleDialog::CreateCircleDialog()
|
|||||||
ui.addButton->setEnabled(false);
|
ui.addButton->setEnabled(false);
|
||||||
ui.radioButton_ListAll->setChecked(true);
|
ui.radioButton_ListAll->setChecked(true);
|
||||||
|
|
||||||
QObject::connect(ui.radioButton_ListAll, SIGNAL(toggled(bool)), this, SLOT(updateCircleGUI())) ;
|
QObject::connect(ui.radioButton_ListAll, SIGNAL(toggled(bool)), this, SLOT(idTypeChanged())) ;
|
||||||
QObject::connect(ui.radioButton_ListAllPGP, SIGNAL(toggled(bool)), this, SLOT(updateCircleGUI())) ;
|
QObject::connect(ui.radioButton_ListAllPGP, SIGNAL(toggled(bool)), this, SLOT(idTypeChanged())) ;
|
||||||
QObject::connect(ui.radioButton_ListKnownPGP, SIGNAL(toggled(bool)), this, SLOT(updateCircleGUI())) ;
|
QObject::connect(ui.radioButton_ListKnownPGP, SIGNAL(toggled(bool)), this, SLOT(idTypeChanged())) ;
|
||||||
|
|
||||||
QObject::connect(ui.radioButton_Public, SIGNAL(toggled(bool)), this, SLOT(updateCircleType(bool))) ;
|
QObject::connect(ui.radioButton_Public, SIGNAL(toggled(bool)), this, SLOT(updateCircleType(bool))) ;
|
||||||
QObject::connect(ui.radioButton_Self, SIGNAL(toggled(bool)), this, SLOT(updateCircleType(bool))) ;
|
QObject::connect(ui.radioButton_Self, SIGNAL(toggled(bool)), this, SLOT(updateCircleType(bool))) ;
|
||||||
@ -764,6 +764,10 @@ void CreateCircleDialog::loadRequest(const TokenQueue *queue, const TokenRequest
|
|||||||
}//if (queue == mIdQueue)
|
}//if (queue == mIdQueue)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CreateCircleDialog::idTypeChanged()
|
||||||
|
{
|
||||||
|
requestGxsIdentities();
|
||||||
|
}
|
||||||
void CreateCircleDialog::filterChanged(const QString &text)
|
void CreateCircleDialog::filterChanged(const QString &text)
|
||||||
{
|
{
|
||||||
Q_UNUSED(text);
|
Q_UNUSED(text);
|
||||||
|
@ -58,6 +58,7 @@ private slots:
|
|||||||
void createCircle();
|
void createCircle();
|
||||||
void filterChanged(const QString &text);
|
void filterChanged(const QString &text);
|
||||||
void createNewGxsId();
|
void createNewGxsId();
|
||||||
|
void idTypeChanged();
|
||||||
|
|
||||||
/** Create the context popup menu and it's submenus */
|
/** Create the context popup menu and it's submenus */
|
||||||
void IdListCustomPopupMenu( QPoint point );
|
void IdListCustomPopupMenu( QPoint point );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user