[gnome-documents] application: remove unused code
- From: Cosimo Cecchi <cosimoc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-documents] application: remove unused code
- Date: Mon, 24 Oct 2016 03:49:11 +0000 (UTC)
commit 3a722a4262f02c0d825992127ef691b9f3461f7b
Author: Cosimo Cecchi <cosimoc gnome org>
Date: Mon Oct 10 18:14:46 2016 -0700
application: remove unused code
Application actions do not follow window modes anymore.
src/application.js | 27 ++-------------------------
1 files changed, 2 insertions(+), 25 deletions(-)
---
diff --git a/src/application.js b/src/application.js
index 54a48d5..ce3604e 100644
--- a/src/application.js
+++ b/src/application.js
@@ -207,28 +207,6 @@ const Application = new Lang.Class({
settings.set_value('night-mode', GLib.Variant.new('b', !state.get_boolean()));
},
- _connectActionsToMode: function() {
- this._actionEntries.forEach(Lang.bind(this,
- function(actionEntry) {
- if (actionEntry.window_mode) {
- modeController.connect('window-mode-changed', Lang.bind(this,
- function() {
- let mode = modeController.getWindowMode();
- let action = this.lookup_action(actionEntry.name);
- action.set_enabled(mode == actionEntry.window_mode);
- }));
- } else if (actionEntry.window_modes) {
- modeController.connect('window-mode-changed', Lang.bind(this,
- function() {
- let mode = modeController.getWindowMode();
- let enable = actionEntry.window_modes.indexOf(mode) != -1;
- let action = this.lookup_action(actionEntry.name);
- action.set_enabled(enable);
- }));
- }
- }));
- },
-
_createMiners: function(callback) {
let count = 3;
@@ -419,7 +397,7 @@ const Application = new Lang.Class({
trackerSearchController = new TrackerController.TrackerSearchController();
selectionController = new Selections.SelectionController();
- this._actionEntries = [
+ let actionEntries = [
{ name: 'quit',
callback: Lang.bind(this, this._onActionQuit),
accels: ['<Primary>q'] },
@@ -441,7 +419,7 @@ const Application = new Lang.Class({
if (!this.isBooks)
this._initGettingStarted();
- Utils.populateActionGroup(this, this._actionEntries, 'app');
+ Utils.populateActionGroup(this, actionEntries, 'app');
},
_createWindow: function() {
@@ -449,7 +427,6 @@ const Application = new Lang.Class({
return;
notificationManager = new Notifications.NotificationManager();
- this._connectActionsToMode();
this._mainWindow = new MainWindow.MainWindow(this);
this._mainWindow.connect('destroy', Lang.bind(this, this._onWindowDestroy));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]