mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-31 03:45:10 -04:00
added missing internal change of webUI directory
This commit is contained in:
parent
e22c5c9702
commit
099113805e
1 changed files with 8 additions and 0 deletions
|
@ -65,6 +65,9 @@ void WebuiPage::selectWebInterfaceDirectory()
|
|||
return;
|
||||
|
||||
whileBlocking(ui.webInterfaceFiles_LE)->setText(dirname);
|
||||
|
||||
QString S;
|
||||
updateParams(S);
|
||||
}
|
||||
|
||||
bool WebuiPage::updateParams(QString &errmsg)
|
||||
|
@ -82,6 +85,8 @@ bool WebuiPage::updateParams(QString &errmsg)
|
|||
// store config
|
||||
Settings->setWebinterfaceEnabled(ui.enableWebUI_CB->isChecked());
|
||||
Settings->setWebinterfaceFilesDirectory(ui.webInterfaceFiles_LE->text());
|
||||
|
||||
rsWebUi->setHtmlFilesDirectory(ui.webInterfaceFiles_LE->text().toStdString());
|
||||
}
|
||||
return ok;
|
||||
}
|
||||
|
@ -196,6 +201,9 @@ void WebuiPage::onApplyClicked()
|
|||
{
|
||||
rsWebUi->setUserPassword(ui.password_LE->text().toStdString());
|
||||
|
||||
QString errmsg;
|
||||
updateParams(errmsg);
|
||||
|
||||
if(!restart())
|
||||
{
|
||||
QMessageBox::warning(0, tr("failed to start Webinterface"), "Failed to start the webinterface.");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue