summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrady Brenot <brady@brenot.ca>2013-02-04 14:41:34 -0600
committerBrady Brenot <brady@brenot.ca>2013-02-04 14:41:34 -0600
commit56764aaa41101354996099a89b02a04b546227aa (patch)
tree0a2ead620c38fcbd062a6c3bbc5899e1c9ce3bc9
parent726b66392179c310287d47fa58acaf6ca8bc2ecd (diff)
fix misaligned #ifdef after mergeandroid-port
-rw-r--r--src/StelMainWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StelMainWindow.cpp b/src/StelMainWindow.cpp
index a57e27d118..f556da7a6b 100644
--- a/src/StelMainWindow.cpp
+++ b/src/StelMainWindow.cpp
@@ -95,7 +95,6 @@ void StelMainWindow::init(QSettings* conf)
setFullScreen(false);
#else
if (conf->value("video/fullscreen", true).toBool())
-#endif
{
setFullScreen(true);
}
@@ -106,6 +105,7 @@ void StelMainWindow::init(QSettings* conf)
int y = conf->value("video/screen_y", 0).toInt();
move(x, y);
}
+#endif
show();
// Process the event to make the window visible and create the renderer.