| Summary: | [PATCH] "Erase Type" combo-box is empty in Tools | Erase CD-RW | ||
|---|---|---|---|
| Product: | [Applications] k3b | Reporter: | Francois Marier <francois> |
| Component: | general | Assignee: | Sebastian Trueg <trueg> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: |
Erase Type empty combo box patch
What the problem looks like on Jiří Paleček's machine |
||
|
Description
Francois Marier
2007-07-04 08:59:27 UTC
Created attachment 21032 [details]
Erase Type empty combo box patch
This patch by Jiří Paleček apparently makes the problem go away.
Created attachment 21033 [details]
What the problem looks like on Jiří Paleček's machine
SVN commit 689551 by trueg: Make sure the blanking mode combo is populated. Thanks to Jiří Jiri Palecek for the patch. BUG: 147526 M +1 -0 k3bblankingdialog.cpp --- branches/stable/extragear/multimedia/k3b/src/misc/k3bblankingdialog.cpp #689550:689551 @@ -83,6 +83,7 @@ connect( m_writerSelectionWidget, SIGNAL(writerChanged()), this, SLOT(slotWriterChanged()) ); connect( m_writerSelectionWidget, SIGNAL(writingAppChanged(int)), this, SLOT(slotWritingAppChanged(int)) ); slotWriterChanged(); + slotWritingAppChanged( m_writerSelectionWidget->writingApp() ); } |