Qt: Set memcard name scrollbars to always-off

And mirror the text in the tooltip.

Closes #9139.
This commit is contained in:
Stenzek 2023-09-09 15:08:13 +10:00 committed by Connor McLaughlin
parent 388e488bc1
commit e1616af98c
1 changed files with 4 additions and 0 deletions

View File

@ -481,6 +481,8 @@ MemoryCardSlotWidget::MemoryCardSlotWidget(QWidget* parent)
{
setAcceptDrops(true);
setSelectionMode(NoSelection);
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
}
MemoryCardSlotWidget::~MemoryCardSlotWidget() = default;
@ -537,4 +539,6 @@ void MemoryCardSlotWidget::setCard(const std::optional<std::string>& name, bool
item->setFont(font);
item->setForeground(palette().brush(QPalette::Disabled, QPalette::Text));
}
item->setToolTip(item->text());
}