diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-11-07 20:10:04 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-11-07 20:10:04 +0000 |
commit | fb02547e1e9817c25bd2a3d5f832e4c42a733b54 (patch) | |
tree | 82778a5461f2d4a5e47fd2ebda95cfeb30a9aa74 /gtk/gtkpathbar.h | |
parent | 4309a349b5fbd21535be270a71f3d4f57da81490 (diff) | |
download | gtk+-fb02547e1e9817c25bd2a3d5f832e4c42a733b54.tar.gz |
Set focus-on-click to FALSE for all buttons. Don't grab focus when a
2005-11-07 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkpathbar.[hc]: Set focus-on-click to FALSE for all buttons.
Don't grab focus when a slider button is pressed, instead, use
a bit in the pathbar struct to determine whether to scroll up
or down. (#314486, Carlos Garnacho)
Diffstat (limited to 'gtk/gtkpathbar.h')
-rw-r--r-- | gtk/gtkpathbar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkpathbar.h b/gtk/gtkpathbar.h index f04146d519..349e1fcbd3 100644 --- a/gtk/gtkpathbar.h +++ b/gtk/gtkpathbar.h @@ -63,6 +63,7 @@ struct _GtkPathBar guint slider_visible : 1; guint need_timer : 1; guint ignore_click : 1; + guint scrolling_up : 1; }; struct _GtkPathBarClass |