summaryrefslogtreecommitdiff
path: root/src/zenity.h
diff options
context:
space:
mode:
authorArx Cruz <arxcruz@gnome.org>2014-10-21 18:30:35 +0200
committerArx Cruz <arxcruz@gnome.org>2014-10-21 18:30:35 +0200
commit15e2759668a1d17bb1570a890bf294aaa796cbf5 (patch)
tree76450a9da365aa5cdd497a093583cf619a87a5e7 /src/zenity.h
parentFixing g_timeout_add calls (diff)
downloadzenity-15e2759668a1d17bb1570a890bf294aaa796cbf5.tar.gz
zenity-15e2759668a1d17bb1570a890bf294aaa796cbf5.tar.bz2
zenity-15e2759668a1d17bb1570a890bf294aaa796cbf5.zip
Bug #685051 Adding --mid-search option to --list
This will enable users to find a row with a text matching the middle of the row. Consider the following list: Little piggy one Little piggy two Little piggy three As a user I would expect that entering 'th' would focus the last row, because it's the first one that contains 'th'
Diffstat (limited to 'src/zenity.h')
-rw-r--r--src/zenity.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenity.h b/src/zenity.h
index 4cf7a044..4b3214dd 100644
--- a/src/zenity.h
+++ b/src/zenity.h
@@ -132,6 +132,7 @@ typedef struct {
gchar *separator;
gboolean multi;
gboolean editable;
+ gboolean mid_search;
gchar *print_column;
gchar *hide_column;
const gchar **data;
bgstack15