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
Multimedia
Kdenlive
Commits
14636495
Commit
14636495
authored
Oct 11, 2020
by
Vivek Yadav
Committed by
Jean-Baptiste Mardelle
Oct 18, 2020
Browse files
Update effectlistwidget.cpp
parent
695c6b3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/effects/effectlist/view/effectlistwidget.cpp
View file @
14636495
...
...
@@ -114,10 +114,8 @@ void EffectListWidget::editCustomAsset(const QModelIndex &index)
QFormLayout
form
(
&
dialog
);
QLineEdit
*
effectName
=
new
QLineEdit
(
getName
(
index
),
&
dialog
);
QTextEdit
*
descriptionBox
=
new
QTextEdit
(
getDescription
(
index
),
&
dialog
);
QString
label_Name
=
QString
(
"Name : "
);
form
.
addRow
(
label_Name
,
effectName
);
QString
label
=
QString
(
"Comments : "
);
form
.
addRow
(
label
,
descriptionBox
);
form
.
addRow
(
i18n
(
"Name : "
),
effectName
);
form
.
addRow
(
i18n
(
"Comments : "
),
descriptionBox
);
QDialogButtonBox
buttonBox
(
QDialogButtonBox
::
Ok
|
QDialogButtonBox
::
Cancel
,
Qt
::
Horizontal
,
&
dialog
);
form
.
addRow
(
&
buttonBox
);
QObject
::
connect
(
&
buttonBox
,
SIGNAL
(
accepted
()),
&
dialog
,
SLOT
(
accept
()));
...
...
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