diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-01-21 16:38:37 -0300 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-02-06 22:23:40 -0300 |
commit | bd928e70edb5ae96ecdfd04edf217e7f504e6f7d (patch) | |
tree | 0cfca97fa904a4ddfdacf6e9918d9231dc521cec | |
parent | eb7324743372d3b94db9a915a5508d8293d45ecb (diff) |
loading_screen: Unchunk progress bar
-rw-r--r-- | src/yuzu/loading_screen.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/yuzu/loading_screen.cpp b/src/yuzu/loading_screen.cpp index 907aac4f1d..86f6d0165a 100644 --- a/src/yuzu/loading_screen.cpp +++ b/src/yuzu/loading_screen.cpp @@ -43,6 +43,7 @@ QProgressBar { } QProgressBar::chunk { background-color: #0ab9e6; + width: 1px; })"; constexpr const char PROGRESSBAR_STYLE_BUILD[] = R"( @@ -53,7 +54,8 @@ QProgressBar { padding: 2px; } QProgressBar::chunk { - background-color: #ff3c28; + background-color: #ff3c28; + width: 1px; })"; constexpr const char PROGRESSBAR_STYLE_COMPLETE[] = R"( |