diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2006-11-09 16:51:05 +0000 |
---|---|---|
committer | Carlos Garnacho <carlosg@src.gnome.org> | 2006-11-09 16:51:05 +0000 |
commit | 0bbc2a56af8006a41bcfd327f49662d1fee3e133 (patch) | |
tree | 36d8e98ac3337da83dd4749401c96b0a49f407ec /gtk/gtkpathbar.c | |
parent | 6549346d0880264e85f20e7565fd9cd0b363e039 (diff) | |
download | gtk+-0bbc2a56af8006a41bcfd327f49662d1fee3e133.tar.gz |
Fix parenthesis confusion.
2006-11-09 Carlos Garnacho <carlosg@gnome.org>
* gtk/gtkpathbar.c (on_slider_unmap): Fix parenthesis confusion.
Diffstat (limited to 'gtk/gtkpathbar.c')
-rw-r--r-- | gtk/gtkpathbar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkpathbar.c b/gtk/gtkpathbar.c index 07631b13a6..c695ba5b04 100644 --- a/gtk/gtkpathbar.c +++ b/gtk/gtkpathbar.c @@ -122,9 +122,9 @@ on_slider_unmap (GtkWidget *widget, GtkPathBar *path_bar) { if (path_bar->timer && - (widget == path_bar->up_slider_button && path_bar->scrolling_up) || - (widget == path_bar->down_slider_button && path_bar->scrolling_down)) - gtk_path_bar_stop_scrolling (path_bar); + ((widget == path_bar->up_slider_button && path_bar->scrolling_up) || + (widget == path_bar->down_slider_button && path_bar->scrolling_down))) + gtk_path_bar_stop_scrolling (path_bar); } static GtkWidget * |