Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
PIM Messagelib
Commits
50d1cd8d
Commit
50d1cd8d
authored
Jun 20, 2021
by
Laurent Montel
😁
Browse files
Intercept return key + fix iconbutton size
parent
5065fd5c
Changes
1
Hide whitespace changes
Inline
Side-by-side
messagelist/src/core/widgets/filternamewidget.cpp
View file @
50d1cd8d
...
...
@@ -7,6 +7,7 @@
#include "filternamewidget.h"
#include <KIconButton>
#include <KLocalizedString>
#include <Libkdepim/LineEditCatchReturnKey>
#include <QDebug>
#include <QHBoxLayout>
#include <QLabel>
...
...
@@ -24,6 +25,8 @@ FilterNameWidget::FilterNameWidget(QWidget *parent)
mName
->
setObjectName
(
QStringLiteral
(
"mName"
));
mIconButton
->
setObjectName
(
QStringLiteral
(
"mIconButton"
));
mIconButton
->
setFixedSize
(
32
,
32
);
new
KPIM
::
LineEditCatchReturnKey
(
mName
,
this
);
auto
label
=
new
QLabel
(
i18n
(
"Name:"
),
this
);
label
->
setObjectName
(
QStringLiteral
(
"label"
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment