[gnome-shell/wip/hadess/always-launch-discrete-gpu: 2/6] appDisplay: Remove unused 'activate-discrete-gpu' action
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/hadess/always-launch-discrete-gpu: 2/6] appDisplay: Remove unused 'activate-discrete-gpu' action
- Date: Mon, 21 Oct 2019 11:23:46 +0000 (UTC)
commit df6c59c6a4a430ee8711244f6f19146d58877fa3
Author: Bastien Nocera <hadess hadess net>
Date: Mon Oct 21 12:48:43 2019 +0200
appDisplay: Remove unused 'activate-discrete-gpu' action
It was added in commit 009d021 but never assigned to any actions.
See: #1804
js/ui/appDisplay.js | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js
index 79c2f7e83a..d79c9b54b6 100644
--- a/js/ui/appDisplay.js
+++ b/js/ui/appDisplay.js
@@ -2514,8 +2514,7 @@ var AppIconMenu = class AppIconMenu extends PopupMenu.PopupMenu {
}
if (discreteGpuAvailable &&
- this._source.app.state == Shell.AppState.STOPPED &&
- !actions.includes('activate-discrete-gpu')) {
+ this._source.app.state == Shell.AppState.STOPPED) {
this._onDiscreteGpuMenuItem = this._appendMenuItem(_("Launch using Dedicated Graphics
Card"));
this._onDiscreteGpuMenuItem.connect('activate', () => {
this._source.animateLaunch();
@@ -2528,8 +2527,7 @@ var AppIconMenu = class AppIconMenu extends PopupMenu.PopupMenu {
let action = actions[i];
let item = this._appendMenuItem(appInfo.get_action_name(action));
item.connect('activate', (emitter, event) => {
- if (action == 'new-window' ||
- action == 'activate-discrete-gpu')
+ if (action == 'new-window')
this._source.animateLaunch();
this._source.app.launch_action(action, event.get_time(), -1);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]