mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Add rpcs3 icon to save dialogs.
This commit is contained in:
parent
d1cde4d0a7
commit
866b9524b3
2 changed files with 2 additions and 0 deletions
|
@ -10,6 +10,7 @@ save_data_info_dialog::save_data_info_dialog(const SaveDataEntry& save, QWidget*
|
|||
: QDialog(parent), m_entry(save)
|
||||
{
|
||||
setWindowTitle(tr("Save Data Information"));
|
||||
setWindowIcon(QIcon(":/rpcs3.ico"));
|
||||
|
||||
// Table
|
||||
m_list = new QTableWidget(this);
|
||||
|
|
|
@ -16,6 +16,7 @@ save_data_list_dialog::save_data_list_dialog(const std::vector<SaveDataEntry>& e
|
|||
: QDialog(parent), m_save_entries(entries), m_selectedEntry(-1), selectedEntryLabel(nullptr)
|
||||
{
|
||||
setWindowTitle(tr("Save Data Interface"));
|
||||
setWindowIcon(QIcon(":/rpcs3.ico"));
|
||||
setMinimumSize(QSize(400, 400));
|
||||
|
||||
// Table
|
||||
|
|
Loading…
Add table
Reference in a new issue