When I set the window title, the title is set back to it\'s corresponding file name.
class myniceApp(App): global Window def build(self): Window.
Window title is set with App.title, not with Window directly:
class MyApp(App): def build(self): self.title = 'Hello world'