mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Rewrite the runtime as a tray-based server which can launch a web browser. Fixes #3086
This commit is contained in:
@@ -34,6 +34,11 @@ void ConfigWindow::on_buttonBox_rejected()
|
||||
this->close();
|
||||
}
|
||||
|
||||
QString ConfigWindow::getBrowserCommand()
|
||||
{
|
||||
return ui->browserCommandLineEdit->text();
|
||||
}
|
||||
|
||||
QString ConfigWindow::getPythonPath()
|
||||
{
|
||||
return ui->pythonPathLineEdit->text();
|
||||
@@ -45,6 +50,11 @@ QString ConfigWindow::getApplicationPath()
|
||||
}
|
||||
|
||||
|
||||
void ConfigWindow::setBrowserCommand(QString command)
|
||||
{
|
||||
ui->browserCommandLineEdit->setText(command);
|
||||
}
|
||||
|
||||
void ConfigWindow::setPythonPath(QString path)
|
||||
{
|
||||
ui->pythonPathLineEdit->setText(path);
|
||||
|
||||
Reference in New Issue
Block a user