diff options
-rwxr-xr-x | bin/drakguard | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/drakguard b/bin/drakguard index 8552b69..afa508a 100755 --- a/bin/drakguard +++ b/bin/drakguard @@ -123,12 +123,12 @@ gtkadd($w->{window}, 1, gtknew('Label'), 0, gtknew('Title2', label => N("User access")), 0, gtknew('HBox', spacing => 5, children_tight => [ - $allusers_list, + gtknew('ScrolledWindow', width => 220, height => 90, child => $allusers_list), gtknew('VBox', spacing => 5, children_tight => [ gtknew('Button', text => N("Add"), sensitive => 0), gtknew('Button', text => N("Remove"), sensitive => 0), ]), - $users_list, + gtknew('ScrolledWindow', width => 220, height => 90, child => $users_list), ]), 1, gtknew('Label'), 0, gtknew('Title2', label => N("Time control")), |