~ubuntu-branches/ubuntu/gutsy/gimp/gutsy

« back to all changes in this revision

Viewing changes to app/display/gimpdisplayshell-appearance.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-06-22 17:33:56 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070622173356-ncevaebpjiwyxkif
Tags: 2.3.18-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/control: Maintainer change.
  - debian/patches/02_help-message.patch,
    debian/patches/03_gimp.desktop.in.in.patch,
    debian/patches/10_dont_show_wizard.patch: Distro patches.
  - debian/rules:
    - use dh_iconcache,
    - i18n magic.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
#include "gimpdisplayshell-appearance.h"
42
42
#include "gimpdisplayshell-callbacks.h"
43
43
#include "gimpdisplayshell-selection.h"
 
44
#include "gimpstatusbar.h"
44
45
 
45
46
 
46
47
#define GET_OPTIONS(shell) \
234
235
 
235
236
  g_object_set (options, "show-statusbar", show, NULL);
236
237
 
237
 
  if (show)
238
 
    gtk_widget_show (shell->statusbar);
239
 
  else
240
 
    gtk_widget_hide (shell->statusbar);
 
238
  gimp_statusbar_set_visible (GIMP_STATUSBAR (shell->statusbar), show);
241
239
 
242
240
  SET_ACTIVE (shell->menubar_manager, "view-show-statusbar", show);
243
241