diff options
author | Leah Neukirchen <leah@vuxu.org> | 2017-07-05 16:41:33 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2017-07-05 16:41:33 +0200 |
commit | 8f4af0c3e86e07a734198bad940d7a7493a72fdb (patch) | |
tree | 78f23697c308bf4ca0342ccf33e03cca0e77d2f9 | |
parent | 22f1089ad9be75b7f2a9ab1080ab56ed5a45b851 (diff) | |
download | xdu-8f4af0c3e86e07a734198bad940d7a7493a72fdb.tar.gz xdu-8f4af0c3e86e07a734198bad940d7a7493a72fdb.tar.xz xdu-8f4af0c3e86e07a734198bad940d7a7493a72fdb.zip |
xsetup: fix window title
-rw-r--r-- | xwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xwin.c b/xwin.c index e5e6d51..8113809 100644 --- a/xwin.c +++ b/xwin.c @@ -280,7 +280,7 @@ xsetup(int *argcp, char **argv) /* Create the top level Widget */ n = 0; - XtSetArg(args[n], XtNtitle, "XDU Disk Usage Display ('h' for help)\n"); n++; + XtSetArg(args[n], XtNtitle, "XDU Disk Usage Display ('?' for help)"); n++; toplevel = XtAppInitialize(&app_con, "XDu", options, XtNumber(options), argcp, argv, |