app/display/gimpdisplayshell.c (gimp_display_shell_show_tooltip)
2008-04-14 Sven Neumann <sven@gimp.org> * app/display/gimpdisplayshell.c (gimp_display_shell_show_tooltip) * app/display/gimpstatusbar.c (gimp_statusbar_progress_start) * app/gui/gui.c (gui_menu_show_tooltip): push a NULL stock-id. svn path=/trunk/; revision=25479
This commit is contained in:
parent
c88bd263e0
commit
fea85ea945
4 changed files with 9 additions and 3 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2008-04-14 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/display/gimpdisplayshell.c (gimp_display_shell_show_tooltip)
|
||||
* app/display/gimpstatusbar.c (gimp_statusbar_progress_start)
|
||||
* app/gui/gui.c (gui_menu_show_tooltip): push a NULL stock-id.
|
||||
|
||||
2008-04-14 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/display/gimpstatusbar.c (gimp_statusbar_label_expose): added
|
||||
|
|
|
|||
|
|
@ -690,7 +690,7 @@ gimp_display_shell_show_tooltip (GimpUIManager *manager,
|
|||
GimpDisplayShell *shell)
|
||||
{
|
||||
gimp_statusbar_push (GIMP_STATUSBAR (shell->statusbar), "menu-tooltip",
|
||||
"%s", tooltip);
|
||||
NULL, "%s", tooltip);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -326,7 +326,7 @@ gimp_statusbar_progress_start (GimpProgress *progress,
|
|||
statusbar->progress_active = TRUE;
|
||||
statusbar->progress_value = 0.0;
|
||||
|
||||
gimp_statusbar_push (statusbar, "progress", "%s", message);
|
||||
gimp_statusbar_push (statusbar, "progress", NULL, "%s", message);
|
||||
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (bar), 0.0);
|
||||
gtk_widget_set_sensitive (statusbar->cancel_button, cancelable);
|
||||
|
||||
|
|
|
|||
|
|
@ -696,7 +696,7 @@ gui_menu_show_tooltip (GimpUIManager *manager,
|
|||
GimpDisplayShell *shell = GIMP_DISPLAY_SHELL (display->shell);
|
||||
|
||||
gimp_statusbar_push (GIMP_STATUSBAR (shell->statusbar), "menu-tooltip",
|
||||
"%s", tooltip);
|
||||
NULL, "%s", tooltip);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue