summaryrefslogtreecommitdiff
path: root/core/launcher/mediummountgui.cpp
Side-by-side diff
Diffstat (limited to 'core/launcher/mediummountgui.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/mediummountgui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/launcher/mediummountgui.cpp b/core/launcher/mediummountgui.cpp
index f193024..6ad97e1 100644
--- a/core/launcher/mediummountgui.cpp
+++ b/core/launcher/mediummountgui.cpp
@@ -18,13 +18,13 @@
#include <qapplication.h>
MediumMountGui::MediumMountGui( const QString &path ,QWidget* parent, const char* name, bool modal, WFlags fl )
- : QDialog( parent, name, modal, fl ) {
+ : QDialog( parent, name, true ) {
QWidget *d = QApplication::desktop();
int w=d->width();
int h=d->height();
resize( w , h );
@@ -36,13 +36,13 @@ MediumMountGui::MediumMountGui( const QString &path ,QWidget* parent, const cha
}
void MediumMountGui::readConfig(){
OConfig cfg (mediumPath +"/.opiestorage.cf");
cfg.setGroup("main");
- checkagain = cfg.readBoolEntry("check", false);
+ checkagain = cfg.readBoolEntry("check", true);
cfg.setGroup("mimetypes");
checkmimeaudio = cfg.readBoolEntry("audio", true);
checkmimeimage = cfg.readBoolEntry("image", true);
checkmimetext = cfg.readBoolEntry("text", true);
checkmimevideo = cfg.readBoolEntry("video", true);