From 21e0d302fc849d9f8827b9f2cb93472f7c30fafe Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Fri, 25 Sep 2015 12:01:08 +0200 Subject: curses UI: fixed truncation of non-filename popup entries --- src/interface-curses.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/interface-curses.h') diff --git a/src/interface-curses.h b/src/interface-curses.h index ed228ee..6116cae 100644 --- a/src/interface-curses.h +++ b/src/interface-curses.h @@ -118,6 +118,12 @@ typedef class InterfaceCurses : public Interface { WINDOW *window; /**! window showing part of pad */ WINDOW *pad; /**! full-height entry list */ + struct Entry { + PopupEntryType type; + bool highlight; + gchar name[]; + }; + GSList *list; /**! list of popup entries */ gint longest; /**! size of longest entry */ gint length; /**! total number of popup entries */ -- cgit v1.2.3