[Xfce4-commits] <xfce4-panel:master> Make miniature view the default in the pager (bug #6825).

Nick Schermer noreply at xfce.org
Mon Nov 15 19:46:01 CET 2010


Updating branch refs/heads/master
         to c67e4782ef4feb213760a6fa80adc17d0eaed94f (commit)
       from 138751842ad6a9803fc0d40067548059c4acc6ad (commit)

commit c67e4782ef4feb213760a6fa80adc17d0eaed94f
Author: Nick Schermer <nick at xfce.org>
Date:   Mon Nov 15 19:44:36 2010 +0100

    Make miniature view the default in the pager (bug #6825).
    
    The other pages consumes too much space with the default workspace names.

 plugins/pager/pager.c |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/plugins/pager/pager.c b/plugins/pager/pager.c
index 1dbee72..3e92feb 100644
--- a/plugins/pager/pager.c
+++ b/plugins/pager/pager.c
@@ -132,7 +132,7 @@ pager_plugin_class_init (PagerPluginClass *klass)
                                    PROP_MINIATURE_VIEW,
                                    g_param_spec_boolean ("miniature-view",
                                                          NULL, NULL,
-                                                         FALSE,
+                                                         TRUE,
                                                          EXO_PARAM_READWRITE));
 
   g_object_class_install_property (gobject_class,
@@ -141,8 +141,6 @@ pager_plugin_class_init (PagerPluginClass *klass)
                                                       NULL, NULL,
                                                       1, 50, 1,
                                                       EXO_PARAM_READWRITE));
-
-
 }
 
 
@@ -152,7 +150,7 @@ pager_plugin_init (PagerPlugin *plugin)
 {
   plugin->wnck_screen = NULL;
   plugin->scrolling = TRUE;
-  plugin->miniature_view = FALSE;
+  plugin->miniature_view = TRUE;
   plugin->rows = 1;
   plugin->pager = NULL;
 }



More information about the Xfce4-commits mailing list