mirror of https://github.com/procxx/kepka.git
Workaround render glitches on new MacBooks.
For unknown reason large windows have bad render glitches in High Sierra. Forcing of OpenGL composition (by adding a fake child QOpenGLWidget) fixes it.
This commit is contained in:
parent
5b190c5098
commit
508fa14385
|
@ -129,7 +129,6 @@ Messenger::Messenger() : QObject()
|
||||||
QMimeDatabase().mimeTypeForName(qsl("text/plain"));
|
QMimeDatabase().mimeTypeForName(qsl("text/plain"));
|
||||||
|
|
||||||
_window = std::make_unique<MainWindow>();
|
_window = std::make_unique<MainWindow>();
|
||||||
_window->createWinId();
|
|
||||||
_window->init();
|
_window->init();
|
||||||
|
|
||||||
auto currentGeometry = _window->geometry();
|
auto currentGeometry = _window->geometry();
|
||||||
|
|
|
@ -216,6 +216,8 @@ MainWindow::Private::~Private() {
|
||||||
|
|
||||||
MainWindow::MainWindow()
|
MainWindow::MainWindow()
|
||||||
: _private(std::make_unique<Private>(this)) {
|
: _private(std::make_unique<Private>(this)) {
|
||||||
|
auto forceOpenGL = std::make_unique<QOpenGLWidget>(this);
|
||||||
|
|
||||||
trayImg = st::macTrayIcon.instance(QColor(0, 0, 0, 180), dbisOne);
|
trayImg = st::macTrayIcon.instance(QColor(0, 0, 0, 180), dbisOne);
|
||||||
trayImgSel = st::macTrayIcon.instance(QColor(255, 255, 255), dbisOne);
|
trayImgSel = st::macTrayIcon.instance(QColor(255, 255, 255), dbisOne);
|
||||||
|
|
||||||
|
|
|
@ -135,6 +135,9 @@ void MainWindow::updateWindowIcon() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::init() {
|
void MainWindow::init() {
|
||||||
|
Expects(!windowHandle());
|
||||||
|
createWinId();
|
||||||
|
|
||||||
initHook();
|
initHook();
|
||||||
updateWindowIcon();
|
updateWindowIcon();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue