From 47597814b57967e9e78c548a37c78e5ef9cf41cf Mon Sep 17 00:00:00 2001 From: Matous Pokorny Date: Thu, 6 Jun 2013 19:35:23 +0200 Subject: [PATCH] src/display-qt: Window title bar and cursor are shown on arch x86_64 --- src/display-qt/displayqt.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/display-qt/displayqt.cpp b/src/display-qt/displayqt.cpp index 938a57de..fe2cb250 100644 --- a/src/display-qt/displayqt.cpp +++ b/src/display-qt/displayqt.cpp @@ -17,8 +17,9 @@ DisplayQT::DisplayQT(QWidget *parent) : { ui->setupUi(this); - /* create the window without the title bar */ #ifndef __i386__ +#ifndef __x86_64__ + /* create the window without the title bar */ Qt::WindowFlags flags = this->windowFlags(); flags |= Qt::FramelessWindowHint; this->setWindowFlags(flags); @@ -26,7 +27,7 @@ DisplayQT::DisplayQT(QWidget *parent) : //cursor will be hidden setCursor(QCursor(Qt::BlankCursor)); #endif - +#endif //na zacatku nazname polohu this->pos.positionIsActual=false; -- 2.39.2