mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
Qt: enable custom fonts for stylesheets and add random object names
This commit is contained in:
parent
31cee7e4c8
commit
f786c078c2
13 changed files with 43 additions and 14 deletions
|
@ -7,6 +7,7 @@
|
|||
#include <QMenu>
|
||||
#include <QActionGroup>
|
||||
#include <QScrollBar>
|
||||
#include <QTabBar>
|
||||
|
||||
constexpr auto qstr = QString::fromStdString;
|
||||
|
||||
|
@ -103,6 +104,8 @@ static gui_listener s_gui_listener;
|
|||
log_frame::log_frame(std::shared_ptr<gui_settings> guiSettings, QWidget *parent) : QDockWidget(tr("Log"), parent), xgui_settings(guiSettings)
|
||||
{
|
||||
m_tabWidget = new QTabWidget;
|
||||
m_tabWidget->setObjectName("tab_widget_log");
|
||||
m_tabWidget->tabBar()->setObjectName("tab_bar_log");
|
||||
|
||||
m_log = new QTextEdit(m_tabWidget);
|
||||
m_log->setObjectName("log_frame");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue