diff options
author | JP Rosevear <jpr@ximian.com> | 2001-01-16 05:55:30 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-01-16 05:55:30 +0800 |
commit | be1bca258a60907abcb6ae536d5be65baade6ccc (patch) | |
tree | 116357766e7d62be45e23260833e11ccd4374e47 /shell | |
parent | 98814270d119de51b9d871afbeb01b6191008c22 (diff) | |
download | gsoc2013-evolution-be1bca258a60907abcb6ae536d5be65baade6ccc.tar gsoc2013-evolution-be1bca258a60907abcb6ae536d5be65baade6ccc.tar.gz gsoc2013-evolution-be1bca258a60907abcb6ae536d5be65baade6ccc.tar.bz2 gsoc2013-evolution-be1bca258a60907abcb6ae536d5be65baade6ccc.tar.lz gsoc2013-evolution-be1bca258a60907abcb6ae536d5be65baade6ccc.tar.xz gsoc2013-evolution-be1bca258a60907abcb6ae536d5be65baade6ccc.tar.zst gsoc2013-evolution-be1bca258a60907abcb6ae536d5be65baade6ccc.zip |
push/pop the color map
2001-01-15 JP Rosevear <jpr@ximian.com>
* e-shell-folder-title-bar.c (e_shell_folder_title_bar_new): push/pop
the color map
svn path=/trunk/; revision=7514
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-folder-title-bar.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index ed666dfca0..3e29f5605f 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-01-15 JP Rosevear <jpr@ximian.com> + + * e-shell-folder-title-bar.c (e_shell_folder_title_bar_new): push/pop + the color map + 2001-01-15 Iain Holmes <iain@ximian.com> * importer/importer.c (import_druid_cancel): Just destroy the wizard. diff --git a/shell/e-shell-folder-title-bar.c b/shell/e-shell-folder-title-bar.c index 7a51e77ad3..788bec2a24 100644 --- a/shell/e-shell-folder-title-bar.c +++ b/shell/e-shell-folder-title-bar.c @@ -256,7 +256,7 @@ realize (GtkWidget *widget) priv = folder_title_bar->priv; pixmap = make_icon_pixmap (folder_title_bar, priv->icon); - priv->icon_widget = gtk_pixmap_new (pixmap, NULL); + priv->icon_widget = gnome_pixmap_new (pixmap, NULL); gdk_pixmap_unref (pixmap); gtk_widget_show (priv->icon_widget); @@ -418,7 +418,9 @@ e_shell_folder_title_bar_new (void) { EShellFolderTitleBar *new; + gtk_widget_push_colormap (gdk_rgb_get_cmap ()); new = gtk_type_new (e_shell_folder_title_bar_get_type ()); + gtk_widget_pop_colormap (); e_shell_folder_title_bar_construct (new); |