1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-17 19:40:21 +01:00

* Fixed bug with no-displayed preferences window.

This commit is contained in:
2007-05-07 04:40:05 +00:00
parent dc54cebd12
commit c54ca0f0bf
4 changed files with 54 additions and 23 deletions

View File

@@ -4,6 +4,8 @@ import utils._importer
import utils.globals
from gtkmvc import Model
from models.m_config import ConfigModel
class MainModel(Model):
"""Our model contains a numeric counter and a numeric value that
holds the value that the counter must be assigned to when we the
@@ -13,6 +15,8 @@ class MainModel(Model):
def __init__(self):
Model.__init__(self)
self.config = ConfigModel()
self.config.load()
return
pass # end of class