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
c75ac2a8
Commit
c75ac2a8
authored
Oct 11, 2020
by
Vivek Yadav
Browse files
Update effectlistwidget.cpp
parent
03743f32
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/effects/effectlist/view/effectlistwidget.cpp
View file @
c75ac2a8
...
...
@@ -113,7 +113,7 @@ void EffectListWidget::editCustomAsset(const QModelIndex &index)
QDialog
dialog
(
this
);
QFormLayout
form
(
&
dialog
);
QLineEdit
*
effectName
=
new
QLineEdit
(
getName
(
index
),
&
dialog
);
QTextEdit
*
descriptionBox
=
new
QTextEdit
(
getDescription
(
index
),
&
dialog
);
QTextEdit
*
descriptionBox
=
new
QTextEdit
(
getDescription
(
true
,
index
),
&
dialog
);
form
.
addRow
(
i18n
(
"Name : "
),
effectName
);
form
.
addRow
(
i18n
(
"Comments : "
),
descriptionBox
);
QDialogButtonBox
buttonBox
(
QDialogButtonBox
::
Ok
|
QDialogButtonBox
::
Cancel
,
Qt
::
Horizontal
,
&
dialog
);
...
...
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