mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-24 23:19:29 -05:00
save chosen ID in posted
This commit is contained in:
parent
4199b1a02f
commit
acd61fd531
@ -112,20 +112,11 @@ void PostedCreatePostDialog::processSettings(bool load)
|
||||
Settings->beginGroup(QString("PostedCreatePostDialog"));
|
||||
|
||||
if (load) {
|
||||
// load settings
|
||||
|
||||
// state of ID Chooser combobox
|
||||
int index = Settings->value("IDChooser", 0).toInt();
|
||||
ui->idChooser->setCurrentIndex(index);
|
||||
|
||||
// load last used Stacked Page
|
||||
setPage(Settings->value("viewPage", VIEW_POST).toInt());
|
||||
} else {
|
||||
// save settings
|
||||
|
||||
// state of ID Chooser combobox
|
||||
Settings->setValue("IDChooser", ui->idChooser->currentIndex());
|
||||
|
||||
// store last used Page
|
||||
Settings->setValue("viewPage", viewMode());
|
||||
}
|
||||
|
@ -687,10 +687,20 @@ void PostedListWidgetWithModel::processSettings(bool load)
|
||||
|
||||
if (load)
|
||||
{
|
||||
// state of ID Chooser combobox
|
||||
RsGxsId gxs_id(Settings->value("IDChooser", QString::fromStdString(RsGxsId().toStdString())).toString().toStdString());
|
||||
|
||||
if(!gxs_id.isNull() && rsIdentity->isOwnId(gxs_id))
|
||||
ui->idChooser->setChosenId(gxs_id);
|
||||
}
|
||||
else
|
||||
{
|
||||
}
|
||||
// state of ID Chooser combobox
|
||||
RsGxsId id;
|
||||
|
||||
if(ui->idChooser->getChosenId(id))
|
||||
Settings->setValue("IDChooser", QString::fromStdString(id.toStdString()));
|
||||
}
|
||||
|
||||
Settings->endGroup();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user