diff options
author | Petr Mrázek <peterix@gmail.com> | 2018-07-24 00:42:18 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2018-07-28 22:12:57 +0200 |
commit | 9e7cdbfe1183f7124308d4468104d26feb4a017d (patch) | |
tree | 7e1f7d896b7a0f8cf084c216f2e82871d67b74db | |
parent | 76d6ec91a4a9b330e8df413f76b3d8189e0eec2f (diff) | |
download | MultiMC-9e7cdbfe1183f7124308d4468104d26feb4a017d.tar MultiMC-9e7cdbfe1183f7124308d4468104d26feb4a017d.tar.gz MultiMC-9e7cdbfe1183f7124308d4468104d26feb4a017d.tar.lz MultiMC-9e7cdbfe1183f7124308d4468104d26feb4a017d.tar.xz MultiMC-9e7cdbfe1183f7124308d4468104d26feb4a017d.zip |
NOISSUE pretty multi-line formatting...
-rw-r--r-- | application/MainWindow.cpp | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/application/MainWindow.cpp b/application/MainWindow.cpp index f8c5ae64..a84af880 100644 --- a/application/MainWindow.cpp +++ b/application/MainWindow.cpp @@ -1241,15 +1241,16 @@ void MainWindow::setCatBackground(bool enabled) { if (enabled) { - view->setStyleSheet("GroupView" - "{" - "background-image: url(:/backgrounds/kitteh);" - "background-attachment: fixed;" - "background-clip: padding;" - "background-position: top right;" - "background-repeat: none;" - "background-color:palette(base);" - "}"); + view->setStyleSheet(R"( +GroupView +{ + background-image: url(:/backgrounds/kitteh); + background-attachment: fixed; + background-clip: padding; + background-position: top right; + background-repeat: none; + background-color:palette(base); +})"); } else { |