Geogouz / Composite-Index-Modeler

CIM
MIT License
40 stars 16 forks source link

black screen #1

Open jligeza opened 8 years ago

jligeza commented 8 years ago

I tried to run the app and all I see is a black screen. Waiting a couple of minutes. Using linux mint 17.2, python 2.7.6, kivy 1.9.0. No errors in console.

Geogouz commented 8 years ago

Interesting. Well to be honest.. My tests have been made only on windows so far. I will check this as soon as I got some spare time.

kiok46 commented 8 years ago

@jligeza @gouzouni It fails to load the CIMgui.kv file. So to run, Either add this self.load_kv('CIMgui.kv')

class CIMgui(App):
    ....
    def build(self):
        self.use_kivy_settings = False
        self.load_kv('CIMgui.kv') #add this line in the source code
        return MainWindow() 

Or Change the name of CIMgui.kv to cimgui.kv


See here for more info: http://kivy.org/docs/guide/lang.html