summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2010-07-26 13:02:55 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2010-07-26 13:02:55 +0200
commitcc2b74229f3755b2d748f2739492b265c442d18a (patch)
treefc68396de80ec66ac5bb483dd40789583edef359 /src
parentae46674dd69cc4e65f595dc364a8c35c8d6aee30 (diff)
Set correct window title when starting feh in paused mode
Diffstat (limited to 'src')
-rw-r--r--src/keyevents.c2
-rw-r--r--src/winwidget.c8
2 files changed, 9 insertions, 1 deletions
diff --git a/src/keyevents.c b/src/keyevents.c
index 2c8890e..b3d48d1 100644
--- a/src/keyevents.c
+++ b/src/keyevents.c
@@ -340,7 +340,7 @@ void feh_event_handle_keypress(XEvent * ev)
case 'f':
if ((winwid->type == WIN_TYPE_THUMBNAIL)
|| (winwid->type == WIN_TYPE_THUMBNAIL_VIEWER))
- weprintf("Filelist saving is not supported in thumbnail mode\n");
+ weprintf("Filelist saving is not supported in thumbnail mode");
else
feh_save_filelist();
break;
diff --git a/src/winwidget.c b/src/winwidget.c
index d1c9e80..beae5df 100644
--- a/src/winwidget.c
+++ b/src/winwidget.c
@@ -146,6 +146,7 @@ void winwidget_create_window(winwidget ret, int w, int h)
Atom prop = None;
int x = 0;
int y = 0;
+ char *tmpname;
D(("winwidget_create_window %dx%d\n", w, h));
@@ -196,6 +197,13 @@ void winwidget_create_window(winwidget ret, int w, int h)
#endif /* HAVE_LIBXINERAMA */
}
+ if (opt.paused) {
+ printf("name %s\n", ret->name);
+ tmpname = estrjoin(" ", ret->name, "[Paused]", NULL);
+ free(ret->name);
+ ret->name = tmpname;
+ }
+
ret->x = x;
ret->y = y;
ret->w = w;