Fix setting cache options

This commit is contained in:
Andrew Resch 2009-07-08 07:10:15 +00:00
parent 6a78e51475
commit e9541ab7c6
1 changed files with 6 additions and 0 deletions

View File

@ -734,6 +734,12 @@ class Preferences(component.Component):
new_core_config["seed_time_limit"] = \ new_core_config["seed_time_limit"] = \
self.glade.get_widget("spin_seed_time_limit").get_value() self.glade.get_widget("spin_seed_time_limit").get_value()
## Cache tab ##
new_core_config["cache_size"] = \
self.glade.get_widget("spin_cache_size").get_value_as_int()
new_core_config["cache_expiry"] = \
self.glade.get_widget("spin_cache_expiry").get_value_as_int()
# Run plugin hook to apply preferences # Run plugin hook to apply preferences
component.get("PluginManager").run_on_apply_prefs() component.get("PluginManager").run_on_apply_prefs()