rpcs3/fix-toolbar-color.patch
Yunhe Guo 389e4ffcac Accepting request 1230908 from home:regularhunter:branches:Emulators
- Update to version 0.0.34~git20241213:
  * cellGem: Improve mouse handler orientation
  * PS Move: fix calibration logging
  * PS Move: Disable Fusion gain (no more drift)
  * move tracker: ignore sporadic shape and position changes
  * move tracker: ignore sporadic invalid results
  * cellGem: lock tracker mutex in get_info
  * Qt 6.8.1
  * cellGem: implement quaternion transformation
  * cellGem: try to map accelerometer and gyro
  * sys_rsx_context_attribute: Improve errors
- Update to version 0.0.34~git20241207:
  * Welcome Dialog: Reject users that reject our TOS
  * fix dark theme switching on initial welcome dialog (#16373)
  * PRX: Do not check exported function code address
  * PPU: Notify SPUs while waiting for its own state
  * CELL: Rewrite reservation notification postponing
  * cellGem: fix HUE_NOT_SET
  * cellGem: calculate distance from sphere to camera
  * Debugger: Dump related thread information on crash
  * System.cpp: Do not hold on fs::dir handle
  * fs: Minor fix of fs::dir::open
  * Emu: Fixup
  * System.cpp: Fix Kill() on bad app startup
  * Add some asserts for g_fxo->init<>
  * System.cpp: Add system_state::loading
  * Fix Emulation boot recursion
  * Qt: Deprecate processEvents() part 2
  * util/types.hpp: Rewrite narrow<>
  * Qt: Deprecate proccessEvents() usage
  * rsx: Use strict bounds testing when replacing memory via blit engine
  * rsx/texture-cache: Rework invalidation cause object to have more granular controls
  * rsx/util: Change the filter function to an in-place erase-if operation
  * Migrate Savestates Home Menu (#16340)
  * LLVM: Implement Recursive Intrinsics
  * VS: add quotes around paths
  * cellDmuxPamf: add module + stubs
  * cellAdec: make AdecContext and AdecFrame trivial classes
  * Invalidate savestates
  * cellAdec: review + warning fixes
  * cellAdec implementation part 1: abstraction layer
  * Fix HLE PPU callback stack arguments
  * sys_net: Remove lingering ppu_to_awake from queue on timeout
  * Qt 6.8.0
  * Fix some warnings
  * Qt: Use inplace image mirroring in video sink
  * Make error message for temporary and archive translatable (#16331)
  * lockless.h: Fox
  * lockless.h: Fixup addressing
  * lockless.h: Fixup lf_array assert
  * Progress: Dialog: Fixup memory management

OBS-URL: https://build.opensuse.org/request/show/1230908
OBS-URL: https://build.opensuse.org/package/show/Emulators/rpcs3?expand=0&rev=129
2024-12-14 06:51:16 +00:00

42 lines
2.3 KiB
Diff

From: Hunter Wardlaw <hunterwardlaw@gmail.com>
Date: Wed, 02 Oct 2024 17:13:37 -0400
Subject: [PATCH] Fix toolbar text color in dark theme
---
rpcs3/rpcs3qt/stylesheets.h | 8 ++++++++--------
1 file changed, 8 insertion(+), 8 deletion(-)
diff --git a/rpcs3/rpcs3qt/stylesheets.h b/rpcs3/rpcs3qt/stylesheets.h
index 52367de..17a4597 100644
--- a/rpcs3/rpcs3qt/stylesheets.h
+++ b/rpcs3/rpcs3qt/stylesheets.h
@@ -9,20 +9,20 @@ namespace gui
const QString default_style_sheet
(
// main window toolbar search
- "QLineEdit#mw_searchbar { padding: 0 1em; background: #fdfdfd; selection-background-color: #148aff; margin: .8em; color:#000000; }"
+ //"QLineEdit#mw_searchbar { padding: 0 1em; background: #fdfdfd; selection-background-color: #148aff; margin: .8em; color:#000000; }"
// main window toolbar slider
- "QSlider#sizeSlider { color: #505050; background: #F0F0F0; }"
- "QSlider#sizeSlider::handle:horizontal { border: 0em smooth rgba(227, 227, 227, 255); border-radius: .58em; background: #404040; width: 1.2em; margin: -.5em 0; }"
- "QSlider#sizeSlider::groove:horizontal { border-radius: .15em; background: #5b5b5b; height: .3em; }"
+ //"QSlider#sizeSlider { color: #505050; background: #F0F0F0; }"
+ //"QSlider#sizeSlider::handle:horizontal { border: 0em smooth rgba(227, 227, 227, 255); border-radius: .58em; background: #404040; width: 1.2em; margin: -.5em 0; }"
+ //"QSlider#sizeSlider::groove:horizontal { border-radius: .15em; background: #5b5b5b; height: .3em; }"
// main window toolbar
- "QToolBar#mw_toolbar { background-color: #F0F0F0; border: none; }"
- "QToolBar#mw_toolbar::separator { background-color: rgba(207, 207, 207, 235); width: 0.125em; margin-top: 0.250em; margin-bottom: 0.250em; }"
- "QToolButton:disabled { color: #787878; }"
+ //"QToolBar#mw_toolbar { color: #505050; background-color: #F0F0F0; border: none; }"
+ //"QToolBar#mw_toolbar::separator { background-color: rgba(207, 207, 207, 235); width: 0.125em; margin-top: 0.250em; margin-bottom: 0.250em; }"
+ //"QToolButton:disabled { color: #787878; }"
// main window toolbar icon color
- "QLabel#toolbar_icon_color { color: #5b5b5b; }"
+ //"QLabel#toolbar_icon_color { color: #5b5b5b; }"
// thumbnail icon color
"QLabel#thumbnail_icon_color { color: rgba(0, 100, 231, 255); }"