From 70bcd7a448d53ee67c8e81bd3a5c1ffecc2e8ace Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Mon, 23 Sep 2019 05:49:31 +0300 Subject: [PATCH] - small change --- FlatCAMApp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FlatCAMApp.py b/FlatCAMApp.py index 26869445..6b76719c 100644 --- a/FlatCAMApp.py +++ b/FlatCAMApp.py @@ -5562,7 +5562,7 @@ class App(QtCore.QObject): if self.toggle_fscreen is False: # self.ui.showFullScreen() - self.ui.setWindowFlags(self.ui.windowFlags() | Qt.WindowStaysOnTopHint | Qt.FramelessWindowHint) + self.ui.setWindowFlags(self.ui.windowFlags() | Qt.FramelessWindowHint) a = self.ui.geometry() self.x_pos = a.x() self.y_pos = a.y() @@ -5574,7 +5574,7 @@ class App(QtCore.QObject): self.ui.splitter_left.setVisible(False) self.toggle_fscreen = True else: - self.ui.setWindowFlags(self.ui.windowFlags() & ~Qt.WindowStaysOnTopHint & ~Qt.FramelessWindowHint) + self.ui.setWindowFlags(self.ui.windowFlags() & ~Qt.FramelessWindowHint) self.ui.setGeometry(self.x_pos, self.y_pos, self.width, self.height) self.ui.showNormal() self.restore_toolbar_view()