PySideSix-Frameless-Window 0.8.1__tar.gz → 0.8.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/PKG-INFO +1 -1
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/PySideSix_Frameless_Window.egg-info/PKG-INFO +1 -1
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/__init__.py +1 -1
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/mac/__init__.py +4 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/setup.py +1 -1
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/LICENSE +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/PySideSix_Frameless_Window.egg-info/SOURCES.txt +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/PySideSix_Frameless_Window.egg-info/dependency_links.txt +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/PySideSix_Frameless_Window.egg-info/requires.txt +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/PySideSix_Frameless_Window.egg-info/top_level.txt +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/README.md +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/_rc/__init__.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/_rc/resource.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/linux/__init__.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/linux/window_effect.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/mac/window_effect.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/titlebar/__init__.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/titlebar/title_bar_buttons.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/utils/__init__.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/utils/linux_utils.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/utils/mac_utils.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/utils/win32_utils.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/webengine/__init__.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/windows/__init__.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/windows/c_structures.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/qframelesswindow/windows/window_effect.py +0 -0
- {pysidesix_frameless_window-0.8.1 → pysidesix_frameless_window-0.8.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PySideSix-Frameless-Window
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.2
|
|
4
4
|
Summary: A cross-platform frameless window based on pyside6, support Win32, Linux and macOS.
|
|
5
5
|
Home-page: https://github.com/zhiyiYo/PyQt-Frameless-Window/tree/PySide6
|
|
6
6
|
Author: zhiyiYo
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PySideSix-Frameless-Window
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.2
|
|
4
4
|
Summary: A cross-platform frameless window based on pyside6, support Win32, Linux and macOS.
|
|
5
5
|
Home-page: https://github.com/zhiyiYo/PyQt-Frameless-Window/tree/PySide6
|
|
6
6
|
Author: zhiyiYo
|
|
@@ -100,6 +100,10 @@ class MacFramelessWindowBase:
|
|
|
100
100
|
self._extendTitleBarToClientArea()
|
|
101
101
|
self.setSystemTitleBarButtonVisible(self.isSystemButtonVisible())
|
|
102
102
|
|
|
103
|
+
def showEvent(self, e):
|
|
104
|
+
self.updateFrameless()
|
|
105
|
+
super().showEvent(e)
|
|
106
|
+
|
|
103
107
|
def _hideSystemTitleBar(self):
|
|
104
108
|
# extend view to title bar region
|
|
105
109
|
self._extendTitleBarToClientArea()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|