From 3e289e19b10014450ace27cd8c8722e34fc5e7e5 Mon Sep 17 00:00:00 2001 From: manongjohn Date: Nov 21 2017 02:30:27 +0000 Subject: Remove duplicate Cell Drag Behavior options (#1584) --- diff --git a/toonz/sources/toonz/preferencespopup.cpp b/toonz/sources/toonz/preferencespopup.cpp index 258dde5..6d8c43e 100644 --- a/toonz/sources/toonz/preferencespopup.cpp +++ b/toonz/sources/toonz/preferencespopup.cpp @@ -1162,7 +1162,6 @@ PreferencesPopup::PreferencesPopup() CheckBox *replaceAfterSaveLevelAsCB = new CheckBox(tr("Replace Toonz Level after SaveLevelAs command"), this); - m_cellsDragBehaviour = new QComboBox(); m_undoMemorySize = new DVGui::IntLineEdit(this, m_pref->getUndoMemorySize(), 0, 2000); m_levelsBackup = new CheckBox(tr("Backup Animation Levels when Saving")); @@ -1433,10 +1432,6 @@ PreferencesPopup::PreferencesPopup() replaceAfterSaveLevelAsCB->setChecked( m_pref->isReplaceAfterSaveLevelAsEnabled()); - QStringList dragCellsBehaviourList; - dragCellsBehaviourList << tr("Cells Only") << tr("Cells and Column Data"); - m_cellsDragBehaviour->addItems(dragCellsBehaviourList); - m_cellsDragBehaviour->setCurrentIndex(m_pref->getDragCellsBehaviour()); m_levelsBackup->setChecked(m_pref->isLevelsBackupEnabled()); sceneNumberingCB->setChecked(m_pref->isSceneNumberingEnabled()); watchFileSystemCB->setChecked(m_pref->isWatchFileSystemEnabled());