~raoul-snyman/openlp/pyqt5-debian-package

« back to all changes in this revision

Viewing changes to debian/patches/hide-check-setting.patch

  • Committer: Raoul Snyman
  • Date: 2015-12-20 21:04:05 UTC
  • Revision ID: raoul@snyman.info-20151220210405-gehe82xyhv2otjnz
Update patch files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Description: Remove the "check for updates" setting from OpenLP.
2
 
Author: Raoul Snyman <raoulsnyman@openlp.org>
3
 
--- old/openlp/core/ui/generaltab.py    2012-12-30 19:41:24 +0000
4
 
+++ new/openlp/core/ui/generaltab.py    2013-02-22 20:32:35 +0000
5
 
@@ -164,6 +164,7 @@
6
 
         self.startupLayout.addWidget(self.showSplashCheckBox)
7
 
         self.checkForUpdatesCheckBox = QtGui.QCheckBox(self.startupGroupBox)
8
 
         self.checkForUpdatesCheckBox.setObjectName(u'checkForUpdatesCheckBox')
9
 
+        self.checkForUpdatesCheckBox.setVisible(False)
10
 
         self.startupLayout.addWidget(self.checkForUpdatesCheckBox)
11
 
         self.rightLayout.addWidget(self.startupGroupBox)
 
2
Author: Raoul Snyman <raoul@snyman.info>
 
3
--- old/openlp/core/ui/generaltab.py        2015-01-18 13:39:21 +0000
 
4
+++ new/openlp/core/ui/generaltab.py        2015-12-20 21:02:53 +0000
 
5
@@ -159,6 +159,7 @@
 
6
         self.startup_layout.addWidget(self.show_splash_check_box)
 
7
         self.check_for_updates_check_box = QtGui.QCheckBox(self.startup_group_box)
 
8
         self.check_for_updates_check_box.setObjectName('check_for_updates_check_box')
 
9
+        self.check_for_updated_check_box.setVisible(False)
 
10
         self.startup_layout.addWidget(self.check_for_updates_check_box)
 
11
         self.right_layout.addWidget(self.startup_group_box)
12
12
         # Application Settings
13
13