summaryrefslogtreecommitdiff
path: root/src/zenity.h
diff options
context:
space:
mode:
authorArx Cruz <arxcruz@gnome.org>2013-11-23 20:32:51 -0200
committerArx Cruz <arxcruz@gnome.org>2013-11-23 20:32:51 -0200
commit4681d74c02e49c2f3af1da5ce9457807dbcf3f9e (patch)
treef1f5bf94d3acc7329d6f07085690e4062f72a0f5 /src/zenity.h
parentBug #534935 Need hability to specify default answer in --question dialog (diff)
downloadzenity-4681d74c02e49c2f3af1da5ce9457807dbcf3f9e.tar.gz
zenity-4681d74c02e49c2f3af1da5ce9457807dbcf3f9e.tar.bz2
zenity-4681d74c02e49c2f3af1da5ce9457807dbcf3f9e.zip
Bug #600533 zenity --text-info should have an auto scroll option
This is a request to add a auto-scroll option. For now it's only works when text-info is getting the text from stdin. Example usage: cat file.txt | zenity --text-info --auto-scroll
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 52c29df5..6e1b6875 100644
--- a/src/zenity.h
+++ b/src/zenity.h
@@ -110,6 +110,7 @@ typedef struct {
gchar *uri;
gboolean editable;
gboolean no_wrap;
+ gboolean auto_scroll;
gchar *font;
GtkTextBuffer *buffer;
gchar *checkbox;
bgstack15