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()
|