File: remove-desktop-popup.patch

package info (click to toggle)
chirp 1%3A20250912-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,144 kB
  • sloc: python: 153,917; ansic: 296; sh: 219; xml: 24; makefile: 19
file content (19 lines) | stat: -rw-r--r-- 628 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Remove popup bugging user to install desktop icon
Author: Dave Hibberd <hibby@debian.org>
Forwarded: not-needed
Last-Update: 2024-09-02
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/chirp/wxui/__init__.py
+++ b/chirp/wxui/__init__.py
@@ -243,10 +243,4 @@
     report.check_for_updates(
         lambda ver: wx.CallAfter(main.display_update_notice, ver))
 
-    if sys.platform == 'linux':
-        try:
-            maybe_install_desktop(args, mainwindow)
-        except Exception as e:
-            LOG.exception('Failed to run linux desktop installer: %s', e)
-
     app.MainLoop()