Bug 147526

Summary: [PATCH] "Erase Type" combo-box is empty in Tools | Erase CD-RW
Product: [Applications] k3b Reporter: Francois Marier <francois>
Component: generalAssignee: Sebastian Trueg <trueg>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Debian testing   
OS: Linux   
Latest Commit: Version Fixed In:
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
Version:           1.0.2 (using KDE KDE 3.5.7)
Installed from:    Debian testing/unstable Packages
OS:                Linux

Jiří Paleček <jpalecek@web.de> reported this bug on the Debian bug tracker (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=431491) and provided the attached patch which fixes the problem for him.

Also attached to this bug is a screenshot of the problem he saw on his machine.
Comment 1 Francois Marier 2007-07-04 09:00:44 UTC
Created attachment 21032 [details]
Erase Type empty combo box patch

This patch by Jiří Paleček apparently makes the problem go away.
Comment 2 Francois Marier 2007-07-04 09:02:06 UTC
Created attachment 21033 [details]
What the problem looks like on Jiří Paleček's machine
Comment 3 Sebastian Trueg 2007-07-18 16:53:37 UTC
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() );
 }