Summary: | different icon types used by slideshow for for backwards/forwards. | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | S. Burmeister <sven.burmeister> |
Component: | Plugin-Generic-Presentation | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | openSUSE | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 0.1.0 | |
Sentry Crash Report: |
Description
S. Burmeister
2006-01-10 18:05:21 UTC
Digikam is using the icons "back" and "forward". That's the same Konqueror uses. KMail uses "previous" and "next". Everything in Subversion revision 487700. SVN commit 496515 by jahrens: He is talking about the slideshow, where we used indeed different icons. BUG: 119867 M +1 -1 toolbar.cpp --- trunk/extragear/libs/kipi-plugins/slideshow/toolbar.cpp #496514:496515 @@ -45,7 +45,7 @@ KIconLoader* loader = kapp->iconLoader(); m_playBtn->setIconSet(loader->loadIcon("player_pause", KIcon::NoGroup, 22)); m_prevBtn->setIconSet(loader->loadIcon("back", KIcon::NoGroup, 22)); - m_nextBtn->setIconSet(loader->loadIcon("next", KIcon::NoGroup, 22)); + m_nextBtn->setIconSet(loader->loadIcon("forward", KIcon::NoGroup, 22)); m_stopBtn->setIconSet(loader->loadIcon("stop", KIcon::NoGroup, 22)); lay->addWidget(m_playBtn); This still seems to be valid for 0.82 slideshow. I use the nuvola icon-theme which should not really make a difference. I am talking about the buttons Pause/Close/Next/Previous that pop-up if you move the mouse to some corner of the screen while the slideshow is on. |