further improvements

This commit is contained in:
itsmattkc
2019-02-14 12:37:30 -08:00
parent e9fe837236
commit abe76c7941
35 changed files with 737 additions and 878 deletions
+2 -2
View File
@@ -86,7 +86,7 @@ void OliveGlobal::new_project() {
panel_project->new_project();
// clear undo stack
undo_stack.clear();
Olive::UndoStack.clear();
// empty current project filename
update_project_filename("");
@@ -188,5 +188,5 @@ void OliveGlobal::save_autorecovery_file() {
void OliveGlobal::open_project_worker(const QString& fn, bool autorecovery) {
update_project_filename(fn);
panel_project->load_project(autorecovery);
undo_stack.clear();
Olive::UndoStack.clear();
}