mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
修复改变浏览器窗口大小出错问题
This commit is contained in:
parent
747805ad7f
commit
3afa6236fa
@ -505,18 +505,29 @@ class WindowSetter(object):
|
|||||||
|
|
||||||
def maximized(self):
|
def maximized(self):
|
||||||
"""窗口最大化"""
|
"""窗口最大化"""
|
||||||
|
s = self._get_info()['bounds']['windowState']
|
||||||
|
if s in ('fullscreen', 'minimized'):
|
||||||
|
self._perform({'windowState': 'normal'})
|
||||||
self._perform({'windowState': 'maximized'})
|
self._perform({'windowState': 'maximized'})
|
||||||
|
|
||||||
def minimized(self):
|
def minimized(self):
|
||||||
"""窗口最小化"""
|
"""窗口最小化"""
|
||||||
|
s = self._get_info()['bounds']['windowState']
|
||||||
|
if s == 'fullscreen':
|
||||||
|
self._perform({'windowState': 'normal'})
|
||||||
self._perform({'windowState': 'minimized'})
|
self._perform({'windowState': 'minimized'})
|
||||||
|
|
||||||
def fullscreen(self):
|
def fullscreen(self):
|
||||||
"""设置窗口为全屏"""
|
"""设置窗口为全屏"""
|
||||||
|
s = self._get_info()['bounds']['windowState']
|
||||||
|
if s == 'minimized':
|
||||||
|
self._perform({'windowState': 'normal'})
|
||||||
self._perform({'windowState': 'fullscreen'})
|
self._perform({'windowState': 'fullscreen'})
|
||||||
|
|
||||||
def normal(self):
|
def normal(self):
|
||||||
"""设置窗口为常规模式"""
|
"""设置窗口为常规模式"""
|
||||||
|
s = self._get_info()['bounds']['windowState']
|
||||||
|
if s == 'fullscreen':
|
||||||
self._perform({'windowState': 'normal'})
|
self._perform({'windowState': 'normal'})
|
||||||
self._perform({'windowState': 'normal'})
|
self._perform({'windowState': 'normal'})
|
||||||
|
|
||||||
@ -527,6 +538,9 @@ class WindowSetter(object):
|
|||||||
:return: None
|
:return: None
|
||||||
"""
|
"""
|
||||||
if width or height:
|
if width or height:
|
||||||
|
s = self._get_info()['bounds']['windowState']
|
||||||
|
if s != 'normal':
|
||||||
|
self._perform({'windowState': 'normal'})
|
||||||
info = self._get_info()['bounds']
|
info = self._get_info()['bounds']
|
||||||
width = width or info['width']
|
width = width or info['width']
|
||||||
height = height or info['height']
|
height = height or info['height']
|
||||||
@ -538,11 +552,11 @@ class WindowSetter(object):
|
|||||||
:param y: 距离左边距离
|
:param y: 距离左边距离
|
||||||
:return: None
|
:return: None
|
||||||
"""
|
"""
|
||||||
if x or y:
|
if x is not None or y is not None:
|
||||||
self.normal()
|
self.normal()
|
||||||
info = self._get_info()['bounds']
|
info = self._get_info()['bounds']
|
||||||
x = x or info['left']
|
x = x if x is not None else info['left']
|
||||||
y = y or info['top']
|
y = y if y is not None else info['top']
|
||||||
self._perform({'left': x, 'top': y})
|
self._perform({'left': x, 'top': y})
|
||||||
|
|
||||||
def _get_info(self):
|
def _get_info(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user