From d35b35b682e2ef6b809fb4be507aa860136691a7 Mon Sep 17 00:00:00 2001 From: simon04 Date: Sun, 6 Nov 2011 12:11:43 +0100 Subject: [PATCH] configurator: fix left and right options for Position in Panel (see #29) --- weather-extension-configurator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weather-extension-configurator.py b/weather-extension-configurator.py index 59a1b97..bf4f6b8 100755 --- a/weather-extension-configurator.py +++ b/weather-extension-configurator.py @@ -101,7 +101,7 @@ class WeatherConfigurator: self.add_text('woeid', 'WOEID', 'The Where On Earth ID determinees the location/city') self.add_radio('unit', 'Temperature Unit', ['celsius', 'fahrenheit']) self.add_text('city', 'Label', "Sometimes your WOEID location isn't quite right (it's the next major city around)") - self.add_radio('position-in-panel', 'Position in Panel*', ['center', 'left', 'right'], "The position of this GNOME Shell extension in the panel (requires restart of GNOME Shell).") + self.add_radio('position-in-panel', 'Position in Panel*', ['center', 'right', 'left'], "The position of this GNOME Shell extension in the panel (requires restart of GNOME Shell).") self.add_check('translate-condition', 'Translate Weather Conditions', "If enabled, the condition is translated based on the weather code. If disabled, the condition string from Yahoo is taken. Note: Enabling the translation sometimes results in loss of accuracy, e.g., the condition string 'PM Thunderstorms' cannot be expressed in terms of weather codes.") self.add_check('use-symbolic-icons', 'Symbolic Icons', "Display symbolic icons instead of full-colored icons") self.add_check('show-text-in-panel', 'Show Text in Panel*', "Whether to show the weather condition text (aka. comment) together with the temperature in the panel (requires restart of GNOME Shell).")