Compare commits

...

5 Commits

Author SHA1 Message Date
Jordan Woyak
11b9e40275 Merge pull request #13933 from JoshuaVandaele/rt-firmware-shadow
RealtekFirmwareLoader: Fix shadowed variable warning
2025-09-07 10:32:01 -05:00
Joshua Vandaële
83cbedd609 RealtekFirmwareLoader: Fix shadowed variable warning 2025-09-07 16:54:11 +02:00
Admiral H. Curtiss
e0332f3749 Merge pull request #13923 from AdmiralCurtiss/dark-progress-bar
DolphinQt/Styles/Dark: Adjust progress bar
2025-09-07 15:38:24 +02:00
Admiral H. Curtiss
c7ff0bf475 DolphinQt/Styles/Dark: Adjust progress bar 2025-08-31 22:02:00 +02:00
Admiral H. Curtiss
88ef583c0e DolphinQt/Styles/Dark: Fix inconsistent formatting 2025-08-31 21:41:42 +02:00
2 changed files with 17 additions and 12 deletions

View File

@@ -318,9 +318,9 @@ static bool LoadFirmware(LibUSBBluetoothAdapter& adapter, std::span<const char>
HCICommandPayload<0xfc20, rtl_download_cmd> payload{};
const auto write_block = [&](std::span<const u8> data) {
const auto write_block = [&](std::span<const u8> block) {
rtl_download_response result{};
if (!adapter.SendBlockingCommand(data, Common::AsWritableU8Span(result)))
if (!adapter.SendBlockingCommand(block, Common::AsWritableU8Span(result)))
return false;
if (result.status != 0x00)

View File

@@ -496,17 +496,22 @@ QTabBar QToolButton::left-arrow {
QTabBar QToolButton::right-arrow {
image: url(:/dolphin_dark_win/right-triangle-tabbar.svg);
}
QTableCornerButton::section {
background-color: #202020;
border: 1px solid #7e7e7e;
border-top: 0px;
border-left: 0px;
border-bottom: 0px;
background-color: #202020;
border: 1px solid #7e7e7e;
border-top: 0px;
border-left: 0px;
border-bottom: 0px;
}
QProgressBar {
border: 2px solid grey;
border-radius: 5px;
background-color: #202020;
}
background-color: #202020;
border: 1px solid #7e7e7e;
color: #dcdcdc;
text-align: center;
}
QProgressBar::chunk {
background-color: #24a806;
width: 1px;
}