chiark / gitweb /
added comments
authornallath <nallath@gmail.com>
Thu, 6 Feb 2014 14:01:00 +0000 (15:01 +0100)
committernallath <nallath@gmail.com>
Thu, 6 Feb 2014 14:01:00 +0000 (15:01 +0100)
Cura/gui/app.py
Cura/gui/util/previewTools.py
Cura/gui/util/taskbar.py
Cura/util/version.py

index b58704cf1ec1451b7b47754e45f6bb4f2a5dee23..fd5fbc04097186e79f1b5d275e4026a56576dc92 100644 (file)
@@ -135,7 +135,7 @@ class CuraApp(wx.App):
 
                setFullScreenCapable(self.mainWindow)
 
-if platform.system() == "Darwin":
+if platform.system() == "Darwin": #Mac magic. Dragons live here. THis sets full screen options.
        try:
                import ctypes, objc
                _objc = ctypes.PyDLL(objc._objc.__file__)
index d784d1cc9d3d640af2b5b995251d202baf59b383..db4b7e214bac7b100d828263eb6be498f03b8d49 100644 (file)
@@ -10,7 +10,7 @@ from OpenGL.GLU import *
 from OpenGL.GL import *
 
 from Cura.gui.util import openglHelpers
-
+#TODO: Rename these. Name is vague.
 class toolNone(object):
        def __init__(self, parent):
                self.parent = parent
index feb95d49a9a7c0587399175f31a988bcda08da7b..9eee5963d9fab348eb632060d86026397299a705 100644 (file)
@@ -1,3 +1,6 @@
+"""
+Api for taskbar. Only for windows 7 or higher (filling up the icon while its progressing).
+"""
 __copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 
 try:
index 475e0c46dec336abf4eb9d7ead02eff68b020ec6..0a52fc2e0b2830fab1e02ab35bfd6d5e11ba6f80 100644 (file)
@@ -52,7 +52,7 @@ def getVersion(getGitVersion = True):
                version = f.readline()
                f.close()
                return version.strip()
-       return "?"
+       return "?" #No idea what the version is. TODO:Tell the user.
 
 def isDevVersion():
        gitPath = os.path.abspath(os.path.join(os.path.split(os.path.abspath(__file__))[0], "../../.git"))