Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
  • Loading branch information
gjanssens committed May 12, 2020
2 parents 9f039a7 + 0c63386 commit ebd9db8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gnucash/gnome-utils/gnc-main-window.c
Original file line number Diff line number Diff line change
Expand Up @@ -3526,7 +3526,7 @@ set_tip (GtkWidget *widget)
g_object_get (data->action, "tooltip", &tooltip, NULL);

gtk_statusbar_push (GTK_STATUSBAR (data->statusbar), 0,
tooltip ? tooltip : "");
tooltip ? tooltip : " ");

g_free (tooltip);
}
Expand Down
2 changes: 1 addition & 1 deletion gnucash/gnome-utils/gnc-window.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ gnc_window_update_status (GncWindow *window, GncPluginPage *page)
statusbar = gnc_window_get_statusbar (window);
message = gnc_plugin_page_get_statusbar_text(page);
gtk_statusbar_pop(GTK_STATUSBAR(statusbar), 0);
gtk_statusbar_push(GTK_STATUSBAR(statusbar), 0, message ? message : "");
gtk_statusbar_push(GTK_STATUSBAR(statusbar), 0, message ? message : " ");
}

void
Expand Down

0 comments on commit ebd9db8

Please sign in to comment.