From 989de579e4ea07a78787149e9eb5c7999deb8527 Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Sat, 18 Jun 2011 11:37:05 -0400 Subject: [PATCH] ocarina: Hide settings by default They don't need to be seen all the time. Hide them until the user asks to see the page. --- ocarina/settings/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ocarina/settings/__init__.py b/ocarina/settings/__init__.py index 1621bb81..f4bb41ee 100644 --- a/ocarina/settings/__init__.py +++ b/ocarina/settings/__init__.py @@ -22,6 +22,7 @@ def hide_settings(*args): body.hide_page(SETTINGS_PAGE) body.switch_to_page_n(0) close_button.connect("clicked", hide_settings) +hide_settings() def show_settings(): body.show_page(SETTINGS_PAGE)