diff options
author | Janne Pulkkinen <jannepulk@gmail.com> | 2011-09-03 20:05:54 +0300 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-09-07 17:45:07 +0200 |
commit | 94723e27adf04eb62b3cdb40ead503ee5f40cab4 (patch) | |
tree | 2ec828bfe2f5d5cd33145e13366a912e9da81466 /src/qt/bitcoin.cpp | |
parent | cf9195c8085bade8076e064c043756024fcafa5a (diff) |
Pull request #21: windows fixes/cleanup by Matoking
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 6f4815758f..daba512adc 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -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(); |