diff options
| author | Jonas Kölker <jonaskoelker@yahoo.com> | 2015-10-03 15:01:48 +0200 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2015-10-03 17:12:20 +0100 |
| commit | 581becc3aa657fe4b7694c6f261d3193d51928d2 (patch) | |
| tree | 30777cc2df0527bdc05c6d22c84a0dac181a0caa /gtk.c | |
| parent | b94be41445d1ed056882c15795f01a6861fc184b (diff) | |
| download | puzzles-581becc3aa657fe4b7694c6f261d3193d51928d2.zip puzzles-581becc3aa657fe4b7694c6f261d3193d51928d2.tar.gz puzzles-581becc3aa657fe4b7694c6f261d3193d51928d2.tar.bz2 puzzles-581becc3aa657fe4b7694c6f261d3193d51928d2.tar.xz | |
Insert a manual reference in the default status bar text.
To guide developers to the resources they need.
[actual wording tweaked by SGT]
Diffstat (limited to 'gtk.c')
| -rw-r--r-- | gtk.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2562,7 +2562,7 @@ static frontend *new_window(char *arg, int argtype, char **error) fe->statusctx = gtk_statusbar_get_context_id (GTK_STATUSBAR(fe->statusbar), "game"); gtk_statusbar_push(GTK_STATUSBAR(fe->statusbar), fe->statusctx, - "test"); + DEFAULT_STATUSBAR_TEXT); #if GTK_CHECK_VERSION(3,0,0) gtk_widget_get_preferred_size(fe->statusbar, &req, NULL); #else |