diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-28 21:52:19 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-28 21:52:19 +0200 |
commit | 78e278c1e33e39eb29a26a976b19ea6a8150bfff (patch) | |
tree | 05c9c5a591b706d086930105b0e187e6266f0bb4 /gui/LegacyModEditDialog.cpp | |
parent | 93bb7c87e3274124465f0858c20091784f84edb1 (diff) | |
download | MultiMC-78e278c1e33e39eb29a26a976b19ea6a8150bfff.tar MultiMC-78e278c1e33e39eb29a26a976b19ea6a8150bfff.tar.gz MultiMC-78e278c1e33e39eb29a26a976b19ea6a8150bfff.tar.lz MultiMC-78e278c1e33e39eb29a26a976b19ea6a8150bfff.tar.xz MultiMC-78e278c1e33e39eb29a26a976b19ea6a8150bfff.zip |
Misc tweaks
* Do not nuke forge META-INF
* Disable inner DnD in mod lists on linux.
Diffstat (limited to 'gui/LegacyModEditDialog.cpp')
-rw-r--r-- | gui/LegacyModEditDialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/LegacyModEditDialog.cpp b/gui/LegacyModEditDialog.cpp index f1e0af6f..616fc050 100644 --- a/gui/LegacyModEditDialog.cpp +++ b/gui/LegacyModEditDialog.cpp @@ -35,12 +35,12 @@ LegacyModEditDialog::LegacyModEditDialog( LegacyInstance* inst, QWidget* parent ensureFolderPathExists(m_inst->jarModsDir()); m_jarmods = m_inst->jarModList(); ui->jarModsTreeView->setModel(m_jarmods.data()); - +#ifndef Q_OS_LINUX // FIXME: internal DnD causes segfaults later ui->jarModsTreeView->setDragDropMode(QAbstractItemView::DragDrop); // FIXME: DnD is glitched with contiguous (we move only first item in selection) ui->jarModsTreeView->setSelectionMode(QAbstractItemView::SingleSelection); - +#endif ui->jarModsTreeView->installEventFilter( this ); m_jarmods->startWatching(); } |