Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Kdenlive
Manage
Activity
Members
Labels
Plan
Issues
462
Issue boards
Milestones
Wiki
Bugzilla
Code
Merge requests
17
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Multimedia
Kdenlive
Commits
ea9d42fa
Commit
ea9d42fa
authored
5 years ago
by
Yuri Chornoivan
Browse files
Options
Downloads
Patches
Plain Diff
Do not setToolTip() for the same tooltip twice
parent
7c9294c6
No related branches found
No related tags found
No related merge requests found
Pipeline
#6596
passed with stage
in 16 minutes and 1 second
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/assets/view/widgets/coloreditwidget.cpp
+0
-1
0 additions, 1 deletion
src/assets/view/widgets/coloreditwidget.cpp
src/assets/view/widgets/slidewidget.cpp
+0
-1
0 additions, 1 deletion
src/assets/view/widgets/slidewidget.cpp
with
0 additions
and
2 deletions
src/assets/view/widgets/coloreditwidget.cpp
+
0
−
1
View file @
ea9d42fa
...
...
@@ -93,7 +93,6 @@ ColorEditWidget::ColorEditWidget(std::shared_ptr<AssetParameterModel> model, QMo
bool
alphaEnabled
=
m_model
->
data
(
m_index
,
AssetParameterModel
::
AlphaRole
).
toBool
();
QString
color
=
m_model
->
data
(
m_index
,
AssetParameterModel
::
ValueRole
).
toString
();
QString
comment
=
m_model
->
data
(
m_index
,
AssetParameterModel
::
CommentRole
).
toString
();
setToolTip
(
comment
);
auto
*
layout
=
new
QHBoxLayout
(
this
);
layout
->
setContentsMargins
(
0
,
0
,
0
,
0
);
...
...
This diff is collapsed.
Click to expand it.
src/assets/view/widgets/slidewidget.cpp
+
0
−
1
View file @
ea9d42fa
...
...
@@ -27,7 +27,6 @@ SlideWidget::SlideWidget(std::shared_ptr<AssetParameterModel> model, QModelIndex
setupUi
(
this
);
QString
name
=
m_model
->
data
(
m_index
,
AssetParameterModel
::
NameRole
).
toString
();
QString
comment
=
m_model
->
data
(
m_index
,
AssetParameterModel
::
CommentRole
).
toString
();
setToolTip
(
comment
);
slotRefresh
();
connect
(
end_up
,
&
QAbstractButton
::
clicked
,
this
,
&
SlideWidget
::
updateValue
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment