-rw-r--r-- | core/launcher/mediummountgui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/launcher/mediummountgui.cpp b/core/launcher/mediummountgui.cpp index 8cc2411..f16a37d 100644 --- a/core/launcher/mediummountgui.cpp +++ b/core/launcher/mediummountgui.cpp @@ -48,7 +48,7 @@ void MediumMountGui::readConfig(){ checkmimeimage = m_cfg->readBoolEntry("image", true); checkmimetext = m_cfg->readBoolEntry("text", true); checkmimevideo = m_cfg->readBoolEntry("video", true); - checkmimeall = m_cfg->readBoolEntry("all", true); + checkmimeall = m_cfg->readBoolEntry("all" , false); m_cfg->setGroup("dirs"); limittodirs = m_cfg->readEntry("dirs", ""); @@ -180,7 +180,7 @@ void MediumMountGui::startGui() { CheckBoxImage->setChecked(checkmimeimage); CheckBoxText->setChecked(checkmimetext); CheckBoxVideo->setChecked(checkmimevideo); - + CheckBoxAll->setChecked( checkmimeall ); // buttons quit = new QPushButton( this ); quit->setGeometry( QRect( (this->width()/2)- 90 , 260, 80, 22 ) ); |