Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
luyikei
VLMC
Commits
21f55eee
Commit
21f55eee
authored
Jan 24, 2010
by
Ludovic Fauvet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GraphicsTrack: cosmetics
parent
41b09019
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/Gui/timeline/GraphicsTrack.cpp
src/Gui/timeline/GraphicsTrack.cpp
+1
-1
src/Gui/timeline/GraphicsTrack.h
src/Gui/timeline/GraphicsTrack.h
+1
-1
src/Gui/widgets/TrackControls.cpp
src/Gui/widgets/TrackControls.cpp
+1
-1
No files found.
src/Gui/timeline/GraphicsTrack.cpp
View file @
21f55eee
...
...
@@ -63,7 +63,7 @@ GraphicsTrack::setTrackEnabled( bool enabled )
}
bool
GraphicsTrack
::
track
Enabled
()
GraphicsTrack
::
is
Enabled
()
{
return
m_enabled
;
}
...
...
src/Gui/timeline/GraphicsTrack.h
View file @
21f55eee
...
...
@@ -42,7 +42,7 @@ public:
void
setHeight
(
int
height
);
int
height
();
void
setTrackEnabled
(
bool
enabled
);
bool
track
Enabled
();
bool
is
Enabled
();
quint32
trackNumber
();
MainWorkflow
::
TrackType
mediaType
();
virtual
int
type
()
const
{
return
Type
;
}
...
...
src/Gui/widgets/TrackControls.cpp
View file @
21f55eee
...
...
@@ -29,7 +29,7 @@ TrackControls::TrackControls( GraphicsTrack* track, QWidget *parent ) :
QWidget
(
parent
),
m_ui
(
new
Ui
::
TrackControls
),
m_track
(
track
)
{
m_ui
->
setupUi
(
this
);
setTrackDisabled
(
!
m_track
->
track
Enabled
()
);
setTrackDisabled
(
!
m_track
->
is
Enabled
()
);
connect
(
m_ui
->
disableButton
,
SIGNAL
(
clicked
(
bool
)
),
this
,
SLOT
(
setTrackDisabled
(
bool
)
)
);
...
...
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