mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-17 05:34:50 -04:00
Fixed Grid and Solution for sensitive mouse
This commit is contained in:
@ -261,6 +261,7 @@ void FractoriumEmberController<T>::OpenAndPrepFiles(const QStringList& filenames
|
||||
FillLibraryTree(append ? previousSize - 1 : 0);
|
||||
|
||||
ClearUndo();
|
||||
m_GLController->ClearControl();
|
||||
SetEmber(previousSize, false);
|
||||
}
|
||||
}
|
||||
@ -279,7 +280,7 @@ void Fractorium::OnActionOpen(bool checked) { m_Controller->OpenAndPrepFiles(Set
|
||||
template <typename T>
|
||||
void FractoriumEmberController<T>::SaveCurrentAsXml()
|
||||
{
|
||||
QString filename;
|
||||
QString filename;
|
||||
auto s = m_Fractorium->m_Settings;
|
||||
|
||||
if (s->SaveAutoUnique() && m_LastSaveCurrent != "")
|
||||
@ -321,6 +322,8 @@ void FractoriumEmberController<T>::SaveCurrentAsXml()
|
||||
else
|
||||
m_Fractorium->ShowCritical("Save Failed", "Could not save file, try saving to a different folder.");
|
||||
}
|
||||
|
||||
m_GLController->ClearControl();
|
||||
}
|
||||
|
||||
void Fractorium::OnActionSaveCurrentAsXml(bool checked) { m_Controller->SaveCurrentAsXml(); }
|
||||
@ -364,6 +367,8 @@ void FractoriumEmberController<T>::SaveEntireFileAsXml()
|
||||
else
|
||||
m_Fractorium->ShowCritical("Save Failed", "Could not save file, try saving to a different folder.");
|
||||
}
|
||||
|
||||
m_GLController->ClearControl();
|
||||
}
|
||||
|
||||
void Fractorium::OnActionSaveEntireFileAsXml(bool checked) { m_Controller->SaveEntireFileAsXml(); }
|
||||
|
Reference in New Issue
Block a user