Pull request #21: windows fixes/cleanup by Matoking
This commit is contained in:
committed by
Wladimir J. van der Laan
parent
cf9195c808
commit
94723e27ad
@@ -5,7 +5,6 @@
|
||||
#include "clientmodel.h"
|
||||
#include "walletmodel.h"
|
||||
#include "optionsmodel.h"
|
||||
#include "qtwin.h"
|
||||
|
||||
#include "headers.h"
|
||||
#include "init.h"
|
||||
@@ -150,24 +149,6 @@ int main(int argc, char *argv[])
|
||||
window.setClientModel(&clientModel);
|
||||
window.setWalletModel(&walletModel);
|
||||
|
||||
if (QtWin::isCompositionEnabled())
|
||||
{
|
||||
#ifdef Q_OS_WIN
|
||||
// Windows-specific customization
|
||||
window.setAttribute(Qt::WA_TranslucentBackground);
|
||||
window.setAttribute(Qt::WA_NoSystemBackground, false);
|
||||
QPalette pal = window.palette();
|
||||
QColor bg = pal.window().color();
|
||||
bg.setAlpha(0);
|
||||
pal.setColor(QPalette::Window, bg);
|
||||
window.setPalette(pal);
|
||||
window.ensurePolished();
|
||||
window.setAttribute(Qt::WA_StyledBackground, false);
|
||||
#endif
|
||||
QtWin::extendFrameIntoClientArea(&window);
|
||||
window.setContentsMargins(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
window.show();
|
||||
|
||||
app.exec();
|
||||
|
||||
Reference in New Issue
Block a user