diff controllerbase.py @ 167:b3b82c2aebee

Using fife settings module again instead of our own.
author Beliar <KarstenBock@gmx.net>
date Mon, 20 Feb 2012 16:50:10 +0100
parents 80672955ab70
children 2a12e2843984
line wrap: on
line diff
--- a/controllerbase.py	Thu Jan 12 18:42:48 2012 +0100
+++ b/controllerbase.py	Mon Feb 20 16:50:10 2012 +0100
@@ -84,7 +84,7 @@
         """Reset cursor to default image.
            @return: None"""
         image =  '/'.join(['gui/cursors/',
-                           self.model.settings.parpg.CursorDefault])
+                           self.model.settings.get("parpg", "CursorDefault")])
         self.setMouseCursor(image, image)
     
     def pump(self, dt):