Skip to content

Commit

Permalink
remove misplaced copy-paste error line
Browse files Browse the repository at this point in the history
and whitespace fixes
  • Loading branch information
daniellandau committed Feb 12, 2016
1 parent 6746bf4 commit 4acefa0
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions prefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ function buildPrefsWidget() {
addActivateByKey(vWidget, settings);

let hWidget = new Gtk.HBox({spacing: 20});

let fontSizeWidget = new Gtk.VBox();
addFontSize(fontSizeWidget, settings);
hWidget.add(fontSizeWidget);

let iconSizeWidget = new Gtk.VBox();
addIconSize(iconSizeWidget, settings);
hWidget.add(iconSizeWidget);

vWidget.add(hWidget);

addMaxWidth(vWidget, settings);

let workspaceWidget = new Gtk.HBox();
addWorkspace(workspaceWidget, settings);
vWidget.add(workspaceWidget);
Expand Down Expand Up @@ -189,7 +189,6 @@ function addWorkspace(widget, settings) {
});
_switch.connect('notify::active', function (o) {
settings.set_boolean('workspace-indicator', o.active);
input.set_sensitive(o.active);
});
widget.add(_switch);
}
Expand Down

0 comments on commit 4acefa0

Please sign in to comment.