Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Kdenlive
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
258
Issues
258
List
Boards
Labels
Service Desk
Milestones
Merge Requests
15
Merge Requests
15
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Multimedia
Kdenlive
Commits
ea9d42fa
Commit
ea9d42fa
authored
Aug 14, 2019
by
Yuri Chornoivan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not setToolTip() for the same tooltip twice
parent
7c9294c6
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
with
0 additions
and
2 deletions
+0
-2
src/assets/view/widgets/coloreditwidget.cpp
src/assets/view/widgets/coloreditwidget.cpp
+0
-1
src/assets/view/widgets/slidewidget.cpp
src/assets/view/widgets/slidewidget.cpp
+0
-1
No files found.
src/assets/view/widgets/coloreditwidget.cpp
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
);
...
...
src/assets/view/widgets/slidewidget.cpp
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
);
...
...
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