mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Improve kernel-explorer's user experience
* Default width of dialog has been increased to fit PPU, SPURS and filesystem objects' description length. * Height has been increased as well to allow viwing more objects at once. * Added title of the game to the kernel explorer's windows' title.
This commit is contained in:
parent
e212f16962
commit
fe8d524352
1 changed files with 3 additions and 3 deletions
|
@ -170,10 +170,10 @@ static QTreeWidgetItem* add_solid_node(QTreeWidget* tree, QTreeWidgetItem *paren
|
|||
kernel_explorer::kernel_explorer(QWidget* parent)
|
||||
: QDialog(parent)
|
||||
{
|
||||
setWindowTitle(tr("Kernel Explorer"));
|
||||
setWindowTitle(tr("Kernel Explorer | %1").arg(qstr(Emu.GetTitleAndTitleID())));
|
||||
setObjectName("kernel_explorer");
|
||||
setAttribute(Qt::WA_DeleteOnClose);
|
||||
setMinimumSize(QSize(700, 450));
|
||||
setMinimumSize(QSize(800, 600));
|
||||
|
||||
QVBoxLayout* vbox_panel = new QVBoxLayout();
|
||||
QHBoxLayout* hbox_buttons = new QHBoxLayout();
|
||||
|
@ -182,7 +182,7 @@ kernel_explorer::kernel_explorer(QWidget* parent)
|
|||
hbox_buttons->addStretch();
|
||||
|
||||
m_tree = new QTreeWidget(this);
|
||||
m_tree->setBaseSize(QSize(600, 300));
|
||||
m_tree->setBaseSize(QSize(700, 450));
|
||||
m_tree->setWindowTitle(tr("Kernel"));
|
||||
m_tree->header()->close();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue