From da54b9cdb04dfdf6747653bad36df04bb2df7877 Mon Sep 17 00:00:00 2001 From: Colin Wallace Date: Mon, 7 Sep 2015 17:08:09 -0700 Subject: [PATCH] Fix tabbing --- src/gui/FileBrowser.cpp | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/gui/FileBrowser.cpp b/src/gui/FileBrowser.cpp index 45de48f92..458924379 100644 --- a/src/gui/FileBrowser.cpp +++ b/src/gui/FileBrowser.cpp @@ -458,35 +458,35 @@ void FileBrowserTreeWidget::mouseMoveEvent( QMouseEvent * me ) switch( f->type() ) { case FileItem::PresetFile: - new StringPairDrag( f->handling() == FileItem::LoadAsPreset ? - "presetfile" : "pluginpresetfile", - f->fullName(), - embed::getIconPixmap( "preset_file" ), this ); + new StringPairDrag( f->handling() == FileItem::LoadAsPreset ? + "presetfile" : "pluginpresetfile", + f->fullName(), + embed::getIconPixmap( "preset_file" ), this ); break; case FileItem::SampleFile: - new StringPairDrag( "samplefile", f->fullName(), - embed::getIconPixmap( "sample_file" ), this ); + new StringPairDrag( "samplefile", f->fullName(), + embed::getIconPixmap( "sample_file" ), this ); break; case FileItem::SoundFontFile: - new StringPairDrag( "soundfontfile", f->fullName(), - embed::getIconPixmap( "soundfont_file" ), this ); - break; + new StringPairDrag( "soundfontfile", f->fullName(), + embed::getIconPixmap( "soundfont_file" ), this ); + break; case FileItem::VstPluginFile: - new StringPairDrag( "vstpluginfile", f->fullName(), - embed::getIconPixmap( "vst_plugin_file" ), this ); + new StringPairDrag( "vstpluginfile", f->fullName(), + embed::getIconPixmap( "vst_plugin_file" ), this ); break; case FileItem::MidiFile: // don't allow dragging FLP-files as FLP import filter clears project // without asking // case fileItem::FlpFile: - new StringPairDrag( "importedproject", f->fullName(), - embed::getIconPixmap( "midi_file" ), this ); + new StringPairDrag( "importedproject", f->fullName(), + embed::getIconPixmap( "midi_file" ), this ); break; - case FileItem::ProjectFile: - new StringPairDrag( "projectfile", f->fullName(), + case FileItem::ProjectFile: + new StringPairDrag( "projectfile", f->fullName(), embed::getIconPixmap( "project_file" ), this ); - break; + break; default: break;