From 68dd1eaa2903e0468debb3d5e6c2f000a1a70f68 Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Sun, 28 Jan 2018 20:23:01 +0100 Subject: [PATCH] Brought back the Restart button in the GUI --- src/osdep/gui/main_window.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/osdep/gui/main_window.cpp b/src/osdep/gui/main_window.cpp index 0734f304..803d7d64 100644 --- a/src/osdep/gui/main_window.cpp +++ b/src/osdep/gui/main_window.cpp @@ -871,6 +871,7 @@ namespace widgets gui_top->add(cmdQuit, DISTANCE_BORDER + BUTTON_WIDTH + DISTANCE_NEXT_X, GUI_HEIGHT - DISTANCE_BORDER - BUTTON_HEIGHT); gui_top->add(cmdShutdown, DISTANCE_BORDER + 2 * BUTTON_WIDTH + 2 * DISTANCE_NEXT_X, GUI_HEIGHT - DISTANCE_BORDER - BUTTON_HEIGHT); gui_top->add(cmdHelp, DISTANCE_BORDER + 3 * BUTTON_WIDTH + 3 * DISTANCE_NEXT_X, GUI_HEIGHT - DISTANCE_BORDER - BUTTON_HEIGHT); + gui_top->add(cmdRestart, DISTANCE_BORDER + 5 * BUTTON_WIDTH + 5 * DISTANCE_NEXT_X, GUI_HEIGHT - DISTANCE_BORDER - BUTTON_HEIGHT); gui_top->add(cmdStart, GUI_WIDTH - DISTANCE_BORDER - BUTTON_WIDTH, GUI_HEIGHT - DISTANCE_BORDER - BUTTON_HEIGHT); gui_top->add(selectors, DISTANCE_BORDER + 1, DISTANCE_BORDER + 1);