aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/fbrun/main.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/fbrun/main.cc b/util/fbrun/main.cc
index 4cd4e59..6fe29f9 100644
--- a/util/fbrun/main.cc
+++ b/util/fbrun/main.cc
@@ -149,7 +149,6 @@ int main(int argc, char **argv) {
149 149
150 fbrun.setTitle(title); 150 fbrun.setTitle(title);
151 fbrun.setText(text); 151 fbrun.setText(text);
152 fbrun.show();
153 152
154 if (near_mouse) { 153 if (near_mouse) {
155 154
@@ -208,6 +207,8 @@ int main(int argc, char **argv) {
208 if (set_pos) 207 if (set_pos)
209 fbrun.move(x, y); 208 fbrun.move(x, y);
210 209
210 fbrun.show();
211
211 application.eventLoop(); 212 application.eventLoop();
212 213
213 } catch (string errstr) { 214 } catch (string errstr) {