DolphinQt: Allow mapping buttons to expand horizontally.

This commit is contained in:
Jordan Woyak 2022-11-11 23:02:56 -06:00
parent f28e5607fe
commit 6044bc32a8
2 changed files with 0 additions and 10 deletions

View File

@ -75,14 +75,6 @@ bool MappingButton::IsInput() const
MappingButton::MappingButton(MappingWidget* parent, ControlReference* ref, bool indicator)
: ElidedButton(RefToDisplayString(ref)), m_parent(parent), m_reference(ref)
{
// Force all mapping buttons to stay at a minimal height.
setFixedHeight(minimumSizeHint().height());
// Make sure that long entries don't throw our layout out of whack.
setFixedWidth(WIDGET_MAX_WIDTH);
setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);
if (IsInput())
{
setToolTip(

View File

@ -9,8 +9,6 @@
#include <QString>
#include <QWidget>
constexpr int WIDGET_MAX_WIDTH = 112;
class ControlGroupBox;
class InputConfig;
class MappingButton;