| Summary: | Amarok dialog doesn't honor "No" and still runs script | ||
|---|---|---|---|
| Product: | [Applications] amarok | Reporter: | Juan Carlos Torres <carlosdgtorres> |
| Component: | general | Assignee: | Amarok Bugs <amarok-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Juan Carlos Torres
2006-10-25 15:02:30 UTC
SVN commit 599609 by aoliveira:
Ok, I don't know who would want to say No to this dialog, but in case it happens, let's respect it.
BUG: 136294
M +2 -0 ChangeLog
M +1 -1 src/enginecontroller.cpp
--- trunk/extragear/multimedia/amarok/ChangeLog #599608:599609
@@ -9,6 +9,8 @@
CHANGES:
BUGFIXES:
+ * The Install MP3 support script would be run regardless of what the
+ user answered to the shown dialog. (BR 136294)
* OSD wouldn't always show up-to-date ratings. Patch by Tuomas Nurmi
<tnurmi@edu.kauhajoki.fi>. (BR 125612)
--- trunk/extragear/multimedia/amarok/src/enginecontroller.cpp #599608:599609
@@ -272,7 +272,7 @@
, i18n( "No MP3 Support" )
, installButton
, KStdGuiItem::no()
- , "codecInstallWarning" ) )
+ , "codecInstallWarning" ) == KMessageBox::Yes )
{
KRun::runCommand(installScript);
return true;
|