mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
DolphinQt: Remove Windows dialog help buttons
This commit is contained in:
@ -1030,7 +1030,9 @@ void GameList::OnHeaderViewChanged()
|
||||
|
||||
void GameList::NewTag()
|
||||
{
|
||||
auto tag = QInputDialog::getText(this, tr("New tag"), tr("Name for a new tag:"));
|
||||
const auto tag =
|
||||
QInputDialog::getText(this, tr("New tag"), tr("Name for a new tag:"), QLineEdit::Normal,
|
||||
QString{}, nullptr, Qt::WindowCloseButtonHint);
|
||||
|
||||
if (tag.isEmpty())
|
||||
return;
|
||||
@ -1040,7 +1042,9 @@ void GameList::NewTag()
|
||||
|
||||
void GameList::DeleteTag()
|
||||
{
|
||||
auto tag = QInputDialog::getText(this, tr("Remove tag"), tr("Name of the tag to remove:"));
|
||||
const auto tag =
|
||||
QInputDialog::getText(this, tr("Remove tag"), tr("Name of the tag to remove:"),
|
||||
QLineEdit::Normal, QString{}, nullptr, Qt::WindowCloseButtonHint);
|
||||
|
||||
if (tag.isEmpty())
|
||||
return;
|
||||
|
Reference in New Issue
Block a user