summaryrefslogtreecommitdiffstats
path: root/nsxiv.h
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2022-02-27 11:53:45 +0100
committerN-R-K <79544946+N-R-K@users.noreply.github.com>2022-03-02 10:32:35 +0100
commitad571e7448eb53fb099ec0cb87baf97cb38d3450 (patch)
tree80c383fe14a4cf63e828142d47e62ffabab740d2 /nsxiv.h
parentbdd9521bf3ea86b3cd83b070728b58227d821ff8 (diff)
downloadnsxiv-ad571e7448eb53fb099ec0cb87baf97cb38d3450.tar.zst
always initialize window title
before if exec/win-title didn't exist then window title wouldn't be set. this patch makes it so window title is always set to something.
Diffstat (limited to 'nsxiv.h')
-rw-r--r--nsxiv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nsxiv.h b/nsxiv.h
index a60f028..8576d51 100644
--- a/nsxiv.h
+++ b/nsxiv.h
@@ -442,7 +442,7 @@ void win_toggle_bar(win_t*);
void win_clear(win_t*);
void win_draw(win_t*);
void win_draw_rect(win_t*, int, int, int, int, bool, int, unsigned long);
-void win_set_title(win_t*);
+void win_set_title(win_t*, bool);
void win_set_cursor(win_t*, cursor_t);
void win_cursor_pos(win_t*, int*, int*);