wicd: fix wicd-curses #954
This commit is contained in:
parent
6cec32265a
commit
220de599ad
2 changed files with 20 additions and 1 deletions
19
srcpkgs/wicd/patches/curses_bitrate_fix.patch
Normal file
19
srcpkgs/wicd/patches/curses_bitrate_fix.patch
Normal file
|
@ -0,0 +1,19 @@
|
|||
--- curses/netentry_curses.py 2015-02-15 18:29:05.000000000 +0100
|
||||
+++ curses/netentry_curses.py 2015-02-15 18:31:24.000000000 +0100
|
||||
@@ -538,11 +538,12 @@
|
||||
self.bitrates = wireless.GetAvailableBitrates()
|
||||
self.bitrates.append('auto')
|
||||
self.bitrate_combo.set_list(self.bitrates)
|
||||
- self.bitrate_combo.set_focus(
|
||||
- self.bitrates.index(
|
||||
- wireless.GetWirelessProperty(networkID, 'bitrate')
|
||||
+ if wireless.GetWirelessProperty(networkID, 'bitrate'):
|
||||
+ self.bitrate_combo.set_focus(
|
||||
+ self.bitrates.index(
|
||||
+ wireless.GetWirelessProperty(networkID, 'bitrate')
|
||||
+ )
|
||||
)
|
||||
- )
|
||||
self.allow_lower_bitrates_chkbox.set_state(
|
||||
to_bool(self.format_entry(networkID, 'allow_lower_bitrates'))
|
||||
)
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'wicd'
|
||||
pkgname=wicd
|
||||
version=1.7.3
|
||||
revision=3
|
||||
revision=4
|
||||
noarch=yes
|
||||
build_options="systemd"
|
||||
hostmakedepends="python python-setuptools python-Babel"
|
||||
|
|
Loading…
Reference in a new issue