]> git.sesse.net Git - kdenlive/commitdiff
more icons
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Tue, 24 Jun 2008 20:43:54 +0000 (20:43 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Tue, 24 Jun 2008 20:43:54 +0000 (20:43 +0000)
svn path=/branches/KDE4/; revision=2271

icons/hi16-action-kdenlive-show-audio.png [new file with mode: 0644]
icons/hi16-action-kdenlive-show-video.png [new file with mode: 0644]
src/headertrack.cpp

diff --git a/icons/hi16-action-kdenlive-show-audio.png b/icons/hi16-action-kdenlive-show-audio.png
new file mode 100644 (file)
index 0000000..6247a15
Binary files /dev/null and b/icons/hi16-action-kdenlive-show-audio.png differ
diff --git a/icons/hi16-action-kdenlive-show-video.png b/icons/hi16-action-kdenlive-show-video.png
new file mode 100644 (file)
index 0000000..2639ab8
Binary files /dev/null and b/icons/hi16-action-kdenlive-show-video.png differ
index 54697818f88cbd8a0556da225e476be35528c18f..ffee227d976e5be281d89d7927d97db9f6d515e3 100644 (file)
@@ -19,9 +19,11 @@ HeaderTrack::HeaderTrack(int index, TrackInfo info, QWidget *parent)
     if (m_type == VIDEOTRACK) {
         view.frame->setBackgroundRole(QPalette::AlternateBase);
         view.frame->setAutoFillBackground(true);
+               view.buttonVideo->setIcon(KIcon("kdenlive-show-video"));
     } else {
         view.buttonVideo->setHidden(true);
     }
+       view.buttonAudio->setIcon(KIcon("kdenlive-show-audio"));
     view.buttonVideo->setChecked(!info.isBlind);
     view.buttonAudio->setChecked(!info.isMute);
     connect(view.buttonVideo, SIGNAL(clicked()), this, SLOT(switchVideo()));