[orca/new-settings] Fix for bad parameter passed to setStartingProfile from the GUI. The parameter passed was a strings
- From: Juanje Ojeda Croissier <jojeda src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca/new-settings] Fix for bad parameter passed to setStartingProfile from the GUI. The parameter passed was a strings
- Date: Mon, 1 Nov 2010 17:39:12 +0000 (UTC)
commit c1a7b7c6c826880ddb6faef513248ee1fc465f82
Author: Alejandro Leiva <aleiva emergya es>
Date: Mon Nov 1 17:31:30 2010 +0100
Fix for bad parameter passed to setStartingProfile from the GUI. The parameter passed was a strings instead of a variable.
src/orca/orca_gui_prefs.py | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
---
diff --git a/src/orca/orca_gui_prefs.py b/src/orca/orca_gui_prefs.py
index ce4b9b6..162bdb8 100644
--- a/src/orca/orca_gui_prefs.py
+++ b/src/orca/orca_gui_prefs.py
@@ -4424,7 +4424,7 @@ class OrcaSetupGUI(orca_gtkbuilder.GtkBuilderWrapper):
self.prefsDict['profile'] = activeProfile
self.prefsDict['activeProfile'] = activeProfile
self.prefsDict['startingProfile'] = startingProfile
- _settingsManager.setStartingProfile('startingProfile')
+ _settingsManager.setStartingProfile(startingProfile)
self.prefsDict['firstStart'] = False
@@ -4593,8 +4593,6 @@ class OrcaSetupGUI(orca_gtkbuilder.GtkBuilderWrapper):
def loadSelectedProfile(self):
"""Load selected profile"""
- print 'loading profile!'
-
self.saveBasicSettings()
activeProfile = self.getComboBoxList(self.profilesCombo)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]