1
0
Fork 0
forked from suyu/suyu

First Pass Loading Screen

This commit is contained in:
ddutchie 2024-03-16 12:44:28 -04:00
parent 44ffa0092e
commit 859ad39852
2 changed files with 10 additions and 4 deletions

View file

@ -31,19 +31,19 @@ constexpr char PROGRESSBAR_STYLE_BUILD[] = R"(
QProgressBar { QProgressBar {
background-color: black; background-color: black;
border: 2px solid white; border: 2px solid white;
border-radius: 4px; border-radius: 25px;
padding: 2px; padding: 2px;
} }
QProgressBar::chunk { QProgressBar::chunk {
background-color: #ff3c28; background-color: white;
width: 1px; width: 1px;
})"; })";
constexpr char PROGRESSBAR_STYLE_COMPLETE[] = R"( constexpr char PROGRESSBAR_STYLE_COMPLETE[] = R"(
QProgressBar { QProgressBar {
background-color: #0ab9e6; background-color: black;
border: 2px solid white; border: 2px solid white;
border-radius: 4px; border-radius: 25px;
padding: 2px; padding: 2px;
} }
QProgressBar::chunk { QProgressBar::chunk {

View file

@ -49,6 +49,9 @@
</property> </property>
<item alignment="Qt::AlignLeft|Qt::AlignTop"> <item alignment="Qt::AlignLeft|Qt::AlignTop">
<widget class="QLabel" name="logo"> <widget class="QLabel" name="logo">
<property name="enabled">
<bool>false</bool>
</property>
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>
@ -140,6 +143,9 @@ font: 75 15pt &quot;Arial&quot;;</string>
</item> </item>
<item alignment="Qt::AlignRight|Qt::AlignBottom"> <item alignment="Qt::AlignRight|Qt::AlignBottom">
<widget class="QLabel" name="banner"> <widget class="QLabel" name="banner">
<property name="enabled">
<bool>false</bool>
</property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">background-color: black;</string> <string notr="true">background-color: black;</string>
</property> </property>