Fixed config box setting problems
svn: r239
This commit is contained in:
parent
0adcb8b7e6
commit
88e81a8bb4
@ -1,3 +1,6 @@
|
|||||||
|
Version 0.4.0
|
||||||
|
|
||||||
|
|
||||||
Version 0.3.2
|
Version 0.3.2
|
||||||
* Fixed Style Editor on WebPage.py, to allow styles to be edited.
|
* Fixed Style Editor on WebPage.py, to allow styles to be edited.
|
||||||
* WebPage generator now lists more information, including sources.
|
* WebPage generator now lists more information, including sources.
|
||||||
|
@ -349,15 +349,15 @@ def on_propertybox_apply(obj,page):
|
|||||||
status_bar = 2
|
status_bar = 2
|
||||||
|
|
||||||
dbdir_temp = prefsTop.get_widget("dbdir").get_full_path(1)
|
dbdir_temp = prefsTop.get_widget("dbdir").get_full_path(1)
|
||||||
if os.path.isdir(dbdir_temp):
|
if dbdir_temp != None and os.path.isdir(dbdir_temp):
|
||||||
db_dir = os.path.normpath(dbdir_temp) + os.sep
|
db_dir = os.path.normpath(dbdir_temp) + os.sep
|
||||||
|
|
||||||
repdir_temp = prefsTop.get_widget("repdir").get_full_path(1)
|
repdir_temp = prefsTop.get_widget("repdir").get_full_path(1)
|
||||||
if os.path.isdir(repdir_temp):
|
if repdir_temp != None and os.path.isdir(repdir_temp):
|
||||||
report_dir = os.path.normpath(repdir_temp) + os.sep
|
report_dir = os.path.normpath(repdir_temp) + os.sep
|
||||||
|
|
||||||
webdir_temp = prefsTop.get_widget("htmldir").get_full_path(1)
|
webdir_temp = prefsTop.get_widget("htmldir").get_full_path(1)
|
||||||
if os.path.isdir(webdir_temp):
|
if webdir_temp != None and os.path.isdir(webdir_temp):
|
||||||
web_dir = os.path.normpath(webdir_temp) + os.sep
|
web_dir = os.path.normpath(webdir_temp) + os.sep
|
||||||
|
|
||||||
paper_preference = paper_obj.get_data("d")
|
paper_preference = paper_obj.get_data("d")
|
||||||
@ -507,6 +507,13 @@ def display_preferences_box():
|
|||||||
detail.set_active(show_detail)
|
detail.set_active(show_detail)
|
||||||
tabs.set_active(usetabs)
|
tabs.set_active(usetabs)
|
||||||
|
|
||||||
|
if status_bar == 0:
|
||||||
|
prefsTop.get_widget("stat1").set_active(1)
|
||||||
|
elif status_bar == 1:
|
||||||
|
prefsTop.get_widget("stat2").set_active(1)
|
||||||
|
else:
|
||||||
|
prefsTop.get_widget("stat3").set_active(1)
|
||||||
|
|
||||||
display_attr_obj.set_active(display_attr)
|
display_attr_obj.set_active(display_attr)
|
||||||
prefsTop.get_widget("attr_name").set_text(attr_name)
|
prefsTop.get_widget("attr_name").set_text(attr_name)
|
||||||
|
|
||||||
|
@ -30,8 +30,8 @@ _ = intl.gettext
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
editor = "gimp"
|
editor = "gimp"
|
||||||
zipcmd = "/usr/bin/zip -r -q"
|
zipcmd = "zip -r -q"
|
||||||
convert = "/usr/X11R6/bin/convert"
|
convert = "convert"
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user