aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@gnome.org>2012-02-18 00:09:07 +0800
committerSrinivasa Ragavan <sragavan@gnome.org>2012-02-18 00:09:59 +0800
commit6cd577402246970faff6814b9d0d0366a374b01a (patch)
treebec31db084e53a95cb4bf8864b26860a2cccefe2
parentbdf598b524a4f4cd711bd97410ad3864bb1bfd6b (diff)
downloadgsoc2013-evolution-6cd577402246970faff6814b9d0d0366a374b01a.tar
gsoc2013-evolution-6cd577402246970faff6814b9d0d0366a374b01a.tar.gz
gsoc2013-evolution-6cd577402246970faff6814b9d0d0366a374b01a.tar.bz2
gsoc2013-evolution-6cd577402246970faff6814b9d0d0366a374b01a.tar.lz
gsoc2013-evolution-6cd577402246970faff6814b9d0d0366a374b01a.tar.xz
gsoc2013-evolution-6cd577402246970faff6814b9d0d0366a374b01a.tar.zst
gsoc2013-evolution-6cd577402246970faff6814b9d0d0366a374b01a.zip
Detect express mode, if we are in Tizen/Dawati.
-rw-r--r--shell/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/main.c b/shell/main.c
index 54664574c5..8ba2a9836f 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -392,9 +392,12 @@ create_default_shell (void)
if (!express_mode)
express_mode = g_settings_get_boolean (settings, "express-mode");
- if (express_mode)
+ if (!express_mode)
e_shell_detect_meego (&is_meego, &small_screen);
+ if (is_meego)
+ express_mode = TRUE;
+
if (error != NULL) {
g_warning ("%s", error->message);
g_clear_error (&error);