workaround bottom toolbar issue on macOS/qt5.12
This commit is contained in:
parent
edb3b176a8
commit
5e3f35a32c
@ -352,7 +352,11 @@ body {{ zoom: {}; {} }}
|
|||||||
self.onBridgeCmd = self.defaultOnBridgeCmd
|
self.onBridgeCmd = self.defaultOnBridgeCmd
|
||||||
|
|
||||||
def adjustHeightToFit(self):
|
def adjustHeightToFit(self):
|
||||||
self.evalWithCallback("$(document.body).height()", self._onHeight)
|
from aqt import mw
|
||||||
|
# fixes bottom toolbar intermittently breaking on startup
|
||||||
|
def delayedResize(qvar):
|
||||||
|
mw.progress.timer(10, lambda: self._onHeight(qvar), False)
|
||||||
|
self.evalWithCallback("$(document.body).height()", delayedResize)
|
||||||
|
|
||||||
def _onHeight(self, qvar):
|
def _onHeight(self, qvar):
|
||||||
if qvar is None:
|
if qvar is None:
|
||||||
|
Loading…
Reference in New Issue
Block a user