diff --git a/bin/GuiConfigs/Classic (Bright).qss b/bin/GuiConfigs/Classic (Bright).qss index 72c7ea7041..9c4c9d441e 100644 --- a/bin/GuiConfigs/Classic (Bright).qss +++ b/bin/GuiConfigs/Classic (Bright).qss @@ -44,13 +44,13 @@ QLabel#gamelist_icon_background_color { } /* log stylesheet */ -QTextEdit#tty_frame { +QPlainTextEdit#tty_frame { background-color:#ffffff; } QLabel#tty_text { color:#000000; } -QTextEdit#log_frame { +QPlainTextEdit#log_frame { background-color:#ffffff; } QLabel#log_level_always { diff --git a/bin/GuiConfigs/Darker Style by TheMitoSan.qss b/bin/GuiConfigs/Darker Style by TheMitoSan.qss index 15be0a5fd3..14a4c1e327 100644 --- a/bin/GuiConfigs/Darker Style by TheMitoSan.qss +++ b/bin/GuiConfigs/Darker Style by TheMitoSan.qss @@ -253,7 +253,7 @@ QLabel#thumbnail_icon_color { } /* Set Log colors */ -QTextEdit#log_frame { +QPlainTextEdit#log_frame { background-color: #000; /* Black */ } QLabel#log_level_always { @@ -285,7 +285,7 @@ QLabel#log_stack { } /* Set TTY colors */ -QTextEdit#tty_frame { +QPlainTextEdit#tty_frame { background-color: #000; /* Black */ } QLabel#tty_text { diff --git a/bin/GuiConfigs/Envy.qss b/bin/GuiConfigs/Envy.qss index fbdda99643..a78ba04f58 100644 --- a/bin/GuiConfigs/Envy.qss +++ b/bin/GuiConfigs/Envy.qss @@ -579,7 +579,7 @@ QLabel#thumbnail_icon_color { } /* Log colors */ -QTextEdit#log_frame { +QPlainTextEdit#log_frame { background-color: #23262d; } @@ -620,7 +620,7 @@ QLabel#log_stack { } /* TTY colors */ -QTextEdit#tty_frame { +QPlainTextEdit#tty_frame { background-color: #23262d; } diff --git a/bin/GuiConfigs/Kuroi (Dark) by Ani.qss b/bin/GuiConfigs/Kuroi (Dark) by Ani.qss index 7e7f5d4b84..54c667213b 100644 --- a/bin/GuiConfigs/Kuroi (Dark) by Ani.qss +++ b/bin/GuiConfigs/Kuroi (Dark) by Ani.qss @@ -292,7 +292,7 @@ QLabel#debugger_frame_pc { } /* Set Log colors */ -QTextEdit#log_frame { +QPlainTextEdit#log_frame { background-color: #000000; /* Black */ } QLabel#log_level_always { @@ -323,7 +323,7 @@ QLabel#log_stack { color: #ffffff; /* White */ } /* Set TTY colors */ -QTextEdit#tty_frame { +QPlainTextEdit#tty_frame { background-color: #000000; /* Black */ } QLabel#tty_text { diff --git a/bin/GuiConfigs/ModernBlue Theme by TheMitoSan.qss b/bin/GuiConfigs/ModernBlue Theme by TheMitoSan.qss index f8d41c3af0..410db682f7 100644 --- a/bin/GuiConfigs/ModernBlue Theme by TheMitoSan.qss +++ b/bin/GuiConfigs/ModernBlue Theme by TheMitoSan.qss @@ -250,7 +250,7 @@ QLabel#thumbnail_icon_color { } /* Set Log colors */ -QTextEdit#log_frame { +QPlainTextEdit#log_frame { background-color: #181d24; /* Black */ } QLabel#log_level_always { @@ -282,7 +282,7 @@ QLabel#log_stack { } /* Set TTY colors */ -QTextEdit#tty_frame { +QPlainTextEdit#tty_frame { background-color: #181d24; /* Black */ } QLabel#tty_text { diff --git a/bin/GuiConfigs/Skyline (Nightfall).qss b/bin/GuiConfigs/Skyline (Nightfall).qss index fbd6b25194..625a6a28b6 100644 --- a/bin/GuiConfigs/Skyline (Nightfall).qss +++ b/bin/GuiConfigs/Skyline (Nightfall).qss @@ -611,7 +611,7 @@ QLineEdit:focus { } /* Log colors */ -QTextEdit#log_frame { +QPlainTextEdit#log_frame { background-color: #111525; } diff --git a/bin/GuiConfigs/Skyline.qss b/bin/GuiConfigs/Skyline.qss index c1339e96ea..ef3c7c6857 100644 --- a/bin/GuiConfigs/Skyline.qss +++ b/bin/GuiConfigs/Skyline.qss @@ -619,7 +619,7 @@ QLineEdit:focus { } /* Log colors */ -QTextEdit#log_frame { +QPlainTextEdit#log_frame { background-color: #FFFFFF; } diff --git a/rpcs3/rpcs3qt/stylesheets.h b/rpcs3/rpcs3qt/stylesheets.h index 15c32b7473..b3300cb98e 100644 --- a/rpcs3/rpcs3qt/stylesheets.h +++ b/rpcs3/rpcs3qt/stylesheets.h @@ -65,11 +65,11 @@ namespace gui "QDockWidget::close-button, QDockWidget::float-button{ background-color: #e3e3e3; }" // log frame tty - "QTextEdit#tty_frame { background-color: #ffffff; }" + "QPlainTextEdit#tty_frame { background-color: #ffffff; }" "QLabel#tty_text { color: #000000; }" // log frame log - "QTextEdit#log_frame { background-color: #ffffff; }" + "QPlainTextEdit#log_frame { background-color: #ffffff; }" "QLabel#log_level_always { color: #107896; }" "QLabel#log_level_fatal { color: #ff00ff; }" "QLabel#log_level_error { color: #C02F1D; }"