Allow expanding Manage Named Filters dialog

Requested at the users forum.
Also made macOS dimensions high dpi aware.
This commit is contained in:
Alejandro Martinez
2025-07-24 19:13:34 -03:00
parent 21fe82f3cd
commit 2e2374761c

View File

@@ -244,9 +244,9 @@ EditNamedSearches::EditNamedSearches(QWidget *parent, Context *context) : QDialo
setAttribute(Qt::WA_DeleteOnClose);
setWindowModality(Qt::NonModal);
#ifdef Q_OS_MAC
setFixedSize(350,400);
setMinimumSize(350*dpiXFactor,400*dpiYFactor);
#else
setFixedSize(450*dpiXFactor,400*dpiYFactor);
setMinimumSize(450*dpiXFactor,400*dpiYFactor);
#endif
QVBoxLayout *layout = new QVBoxLayout(this);