# HG changeset patch # User Wuzzy # Date 1563413115 -7200 # Node ID 9be05ae1b726976b050025c0ad6a4199c7beefa3 # Parent 8dd3602a45006eadc0c4a110583362ab68d81c76 Use minimum size for keybinder category list diff -r 8dd3602a4500 -r 9be05ae1b726 QTfrontend/ui/widget/keybinder.cpp --- a/QTfrontend/ui/widget/keybinder.cpp Thu Jul 18 01:46:40 2019 +0200 +++ b/QTfrontend/ui/widget/keybinder.cpp Thu Jul 18 03:25:15 2019 +0200 @@ -49,7 +49,7 @@ QVBoxLayout * catListContainer = new QVBoxLayout(); catListContainer->setContentsMargins(10, 10, 10, 10); catList = new QListWidget(); - catList->setFixedWidth(180); + catList->setMinimumWidth(180); catList->setStyleSheet("QListWidget::item { font-size: 14px; } QListWidget:hover { border-color: #F6CB1C; } QListWidget::item:selected { background: #150A61; color: yellow; }"); catList->setFocusPolicy(Qt::NoFocus); connect(catList, SIGNAL(currentRowChanged(int)), this, SLOT(changeBindingsPage(int)));