Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
prefs-dialog: use hscrollbar-policy GTK_POLICY_NEVER
fixes #76
  • Loading branch information
raveit65 committed Feb 25, 2018
1 parent 7e48690 commit 3f54c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sensors-applet/prefs-dialog.c
Expand Up @@ -807,7 +807,7 @@ void prefs_dialog_open(SensorsApplet *sensors_applet) {
prefs_dialog->scrolled_window = g_object_new(GTK_TYPE_SCROLLED_WINDOW,
"hadjustment", NULL,
"height-request", 200,
"hscrollbar-policy", GTK_POLICY_AUTOMATIC,
"hscrollbar-policy", GTK_POLICY_NEVER,
"vadjustment",NULL,
"vscrollbar-policy", GTK_POLICY_AUTOMATIC,
NULL);
Expand Down

0 comments on commit 3f54c57

Please sign in to comment.