summaryrefslogtreecommitdiffstats
path: root/meta-xfce/recipes-apps/menulibre/files/0001-add_launcher-Exit-early-if-no-row-is-selected.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-xfce/recipes-apps/menulibre/files/0001-add_launcher-Exit-early-if-no-row-is-selected.patch')
-rw-r--r--meta-xfce/recipes-apps/menulibre/files/0001-add_launcher-Exit-early-if-no-row-is-selected.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/meta-xfce/recipes-apps/menulibre/files/0001-add_launcher-Exit-early-if-no-row-is-selected.patch b/meta-xfce/recipes-apps/menulibre/files/0001-add_launcher-Exit-early-if-no-row-is-selected.patch
deleted file mode 100644
index fb2dfc90a..000000000
--- a/meta-xfce/recipes-apps/menulibre/files/0001-add_launcher-Exit-early-if-no-row-is-selected.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1From 1060e7ac8a63b93d56006718f0e9b1d9382b2226 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
3Date: Mon, 31 Oct 2016 08:33:16 +0100
4Subject: [PATCH] add_launcher: Exit early if no row is selected
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Stolen from [1]
10
11[1] http://pkgs.fedoraproject.org/cgit/rpms/menulibre.git/tree/menulibre-add-launcher-none-check.patch
12
13Upstream-Status: Pending
14
15Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
16---
17 menulibre/MenulibreApplication.py | 4 ++++
18 1 file changed, 4 insertions(+)
19
20diff --git a/menulibre/MenulibreApplication.py b/menulibre/MenulibreApplication.py
21index e234800..ac73b03 100644
22--- a/menulibre/MenulibreApplication.py
23+++ b/menulibre/MenulibreApplication.py
24@@ -1418,6 +1418,10 @@ class MenulibreWindow(Gtk.ApplicationWindow):
25 model, parent_data = self.treeview.get_parent_row_data()
26 model, row_data = self.treeview.get_selected_row_data()
27
28+ # Exit early if no row is selected
29+ if not row_data:
30+ return
31+
32 # Currently selected item is a directory, take its categories.
33 if row_data[2] == MenuItemTypes.DIRECTORY:
34 self.treeview.add_child(new_row_data)
35--
362.5.5
37