Skip to content

Commit 7b440c2

Browse files
committed
Add link to LiveprogIDE + update submodule
1 parent abda0e0 commit 7b440c2

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/MainWindow.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,11 +258,13 @@ MainWindow::MainWindow(bool statupInTray,
258258
_statusFragment->fragment()->updateStatus(_audioService->status());
259259
_statusFragment->slideIn();
260260
});
261-
menu->addAction(tr("Relink audio pipeline"), this, SLOT(onRelinkRequested()));
261+
menu->addAction(tr("Relink audio pipeline"), this, SLOT(onRelinkRequested()));
262262
menu->addSeparator();
263263
menu->addAction(tr("Reset to defaults"), this, SLOT(onResetRequested()));
264264
menu->addAction(tr("Load from file"), this, SLOT(loadExternalFile()));
265-
menu->addAction(tr("Save to file"), this, SLOT(saveExternalFile()));
265+
menu->addAction(tr("Save to file"), this, SLOT(saveExternalFile()));
266+
menu->addSeparator();
267+
menu->addAction(tr("Open LiveprogIDE"), _eelEditor, &EELEditor::show);
266268
menu->addSeparator();
267269
menu->addAction(tr("What's this..."), this, []()
268270
{

src/interface/fragment/SettingsFragment.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -229,12 +229,10 @@ void SettingsFragment::refreshAll()
229229
ui->systray_icon_box->setEnabled(AppConfig::instance().get<bool>(AppConfig::TrayIconEnabled));
230230
ui->menu_edit->setEnabled(AppConfig::instance().get<bool>(AppConfig::TrayIconEnabled));
231231

232-
bool autostart_enabled = AutostartManager::inspectDesktopFile(autostart_path, AutostartManager::Exists);
233-
bool autostart_delayed = AutostartManager::inspectDesktopFile(autostart_path, AutostartManager::Delayed);
234-
235-
ui->systray_minOnBoot->setChecked(autostart_enabled);
236-
ui->systray_delay->setEnabled(autostart_enabled);
237-
ui->systray_delay->setChecked(autostart_delayed);
232+
bool autostartEnabled = AutostartManager::inspectDesktopFile(autostart_path, AutostartManager::Exists);
233+
ui->systray_minOnBoot->setChecked(autostartEnabled);
234+
ui->systray_delay->setEnabled(autostartEnabled);
235+
ui->systray_delay->setChecked(AutostartManager::inspectDesktopFile(autostart_path, AutostartManager::Delayed));
238236

239237
ui->eq_alwaysdrawhandles->setChecked(AppConfig::instance().get<bool>(AppConfig::EqualizerShowHandles));
240238

src/subprojects/EELEditor

0 commit comments

Comments
 (0)