diff options
| author | 2019-01-21 16:38:37 -0300 | |
|---|---|---|
| committer | 2019-02-06 22:23:40 -0300 | |
| commit | bd928e70edb5ae96ecdfd04edf217e7f504e6f7d (patch) | |
| tree | 0cfca97fa904a4ddfdacf6e9918d9231dc521cec /src | |
| parent | gl_shader_cache: Link loading screen with disk shader cache load (diff) | |
| download | yuzu-bd928e70edb5ae96ecdfd04edf217e7f504e6f7d.tar.gz yuzu-bd928e70edb5ae96ecdfd04edf217e7f504e6f7d.tar.xz yuzu-bd928e70edb5ae96ecdfd04edf217e7f504e6f7d.zip | |
loading_screen: Unchunk progress bar
Diffstat (limited to 'src')
| -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 907aac4f1..86f6d0165 100644 --- a/src/yuzu/loading_screen.cpp +++ b/src/yuzu/loading_screen.cpp | |||
| @@ -43,6 +43,7 @@ QProgressBar { | |||
| 43 | } | 43 | } |
| 44 | QProgressBar::chunk { | 44 | QProgressBar::chunk { |
| 45 | background-color: #0ab9e6; | 45 | background-color: #0ab9e6; |
| 46 | width: 1px; | ||
| 46 | })"; | 47 | })"; |
| 47 | 48 | ||
| 48 | constexpr const char PROGRESSBAR_STYLE_BUILD[] = R"( | 49 | constexpr const char PROGRESSBAR_STYLE_BUILD[] = R"( |
| @@ -53,7 +54,8 @@ QProgressBar { | |||
| 53 | padding: 2px; | 54 | padding: 2px; |
| 54 | } | 55 | } |
| 55 | QProgressBar::chunk { | 56 | QProgressBar::chunk { |
| 56 | background-color: #ff3c28; | 57 | background-color: #ff3c28; |
| 58 | width: 1px; | ||
| 57 | })"; | 59 | })"; |
| 58 | 60 | ||
| 59 | constexpr const char PROGRESSBAR_STYLE_COMPLETE[] = R"( | 61 | constexpr const char PROGRESSBAR_STYLE_COMPLETE[] = R"( |