mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
Qt: clean up gui_settings.h - move general functions to qt_utils.h
This commit is contained in:
parent
c10e195dba
commit
baea538c32
15 changed files with 187 additions and 175 deletions
|
@ -1,4 +1,5 @@
|
|||
#include "debugger_frame.h"
|
||||
#include "qt_utils.h"
|
||||
|
||||
#include <QScrollBar>
|
||||
#include <QApplication>
|
||||
|
@ -155,10 +156,10 @@ void debugger_frame::ChangeColors()
|
|||
{
|
||||
if (m_list)
|
||||
{
|
||||
m_list->m_color_bp = gui::get_Label_Color("debugger_frame_breakpoint", QPalette::Background);
|
||||
m_list->m_color_pc = gui::get_Label_Color("debugger_frame_pc", QPalette::Background);
|
||||
m_list->m_text_color_bp = gui::get_Label_Color("debugger_frame_breakpoint");;
|
||||
m_list->m_text_color_pc = gui::get_Label_Color("debugger_frame_pc");;
|
||||
m_list->m_color_bp = gui::utils::get_label_color("debugger_frame_breakpoint", QPalette::Background);
|
||||
m_list->m_color_pc = gui::utils::get_label_color("debugger_frame_pc", QPalette::Background);
|
||||
m_list->m_text_color_bp = gui::utils::get_label_color("debugger_frame_breakpoint");;
|
||||
m_list->m_text_color_pc = gui::utils::get_label_color("debugger_frame_pc");;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue