~gnome-shell-extensions/gnome-shell-extensions/appindicator-support-head

« back to all changes in this revision

Viewing changes to prefs.js

  • Committer: Jonas Kümmerlin
  • Date: 2013-10-26 17:10:13 UTC
  • Revision ID: git-v1:1d9cc2cb385e8d46aae134efd13fc3e4d0b253c3
New feature: Indicators can be placed in the dash.

Fixes #20.
Beware of new bug reports. If we hit bugs we can't fix, the whole
thing might be removed. It is already incompatible with Dash-to-Dock.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
    var default_switch = new Gtk.ComboBoxText();
71
71
    default_switch.append("message-tray", _("Show in message tray"));
72
72
    default_switch.append("panel", _("Show in panel"));
 
73
    default_switch.append("dash", _("Show in dash (experimental)"));
73
74
    default_switch.append("blacklist", _("Do not show"));
74
75
    default_switch.connect("changed", Lang.bind(default_switch, defaultChangedCallback));
75
76
    default_switch.set_active_id(Settings.instance.getDefault());
207
208
    select.append("auto", _("Show at default location"));
208
209
    select.append("message-tray", _("Show in message tray"));
209
210
    select.append("panel", _("Show in panel"));
 
211
    select.append("dash", _("Show in dash (experimental)"));
210
212
    select.append("blacklist", _("Do not show"));
211
213
    select.set_active_id(value);
212
214
    select.connect("changed", changedClb);