aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shortcuts-view.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-05-24 04:51:27 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-05-24 04:51:27 +0800
commit5e3c6d9dcf6f1edfa470a2b5677a92f72deef2dc (patch)
treed3727b82920393774ea6010a2ea2c5be1cd8c0e9 /shell/e-shortcuts-view.c
parent52d456541687ef0360a6d9c010363f7711ae8818 (diff)
downloadgsoc2013-evolution-5e3c6d9dcf6f1edfa470a2b5677a92f72deef2dc.tar
gsoc2013-evolution-5e3c6d9dcf6f1edfa470a2b5677a92f72deef2dc.tar.gz
gsoc2013-evolution-5e3c6d9dcf6f1edfa470a2b5677a92f72deef2dc.tar.bz2
gsoc2013-evolution-5e3c6d9dcf6f1edfa470a2b5677a92f72deef2dc.tar.lz
gsoc2013-evolution-5e3c6d9dcf6f1edfa470a2b5677a92f72deef2dc.tar.xz
gsoc2013-evolution-5e3c6d9dcf6f1edfa470a2b5677a92f72deef2dc.tar.zst
gsoc2013-evolution-5e3c6d9dcf6f1edfa470a2b5677a92f72deef2dc.zip
Set the view type from the original group, thus preserving the
* e-shortcuts-view.c (rename_group_cb): Set the view type from the original group, thus preserving the small-icon/large-icon state. Fixes #6732. svn path=/trunk/; revision=16991
Diffstat (limited to 'shell/e-shortcuts-view.c')
-rw-r--r--shell/e-shortcuts-view.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c
index 3d7fc27656..fea3182dd9 100644
--- a/shell/e-shortcuts-view.c
+++ b/shell/e-shortcuts-view.c
@@ -195,6 +195,7 @@ rename_group_cb (GtkWidget *widget,
RightClickMenuData *menu_data;
EShortcuts *shortcuts;
EShortcutsView *shortcuts_view;
+ EIconBarViewType original_view_type;
const char *old_name;
char *new_name;
int group;
@@ -213,11 +214,18 @@ rename_group_cb (GtkWidget *widget,
if (new_name == NULL)
return;
- /* Remember the group and flip back to it */
+ /* Remember the group and flip back to it. FIXME: This is a workaround
+ to an actual ShortcutBar bug. */
+
group = e_group_bar_get_current_group_num (E_GROUP_BAR (E_SHORTCUT_BAR (shortcuts_view)));
+ original_view_type = e_shortcut_bar_get_view_type (E_SHORTCUT_BAR (menu_data->shortcuts_view),
+ group);
e_shortcuts_rename_group (shortcuts, menu_data->group_num, new_name);
+
g_free (new_name);
e_group_bar_set_current_group_num (E_GROUP_BAR (E_SHORTCUT_BAR (shortcuts_view)), group, FALSE);
+ e_shortcut_bar_set_view_type (E_SHORTCUT_BAR (menu_data->shortcuts_view),
+ group, original_view_type);
}
static GnomeUIInfo icon_size_radio_group_uiinfo[] = {