open files after the window has been opened
this way we can update the window title
This commit is contained in:
@@ -8,5 +8,9 @@ class RavenUI():
|
||||
|
||||
@staticmethod
|
||||
def update_window_title(title: str):
|
||||
if RavenUI.window:
|
||||
if not RavenUI.window:
|
||||
return
|
||||
if len(title) > 0:
|
||||
RavenUI.window.setWindowTitle("%s - RavenLog" % title)
|
||||
else:
|
||||
RavenUI.window.setWindowTitle("RavenLog")
|
||||
|
||||
Reference in New Issue
Block a user