mirror of https://github.com/PCSX2/pcsx2.git
Qt: Set memcard name scrollbars to always-off
And mirror the text in the tooltip. Closes #9139.
This commit is contained in:
parent
388e488bc1
commit
e1616af98c
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue