various: fix broken transition creation
It's now possible to create transitions! But they're still broken in a multitude of other ways so plenty more work to do hahahahahahahahaha
This commit is contained in:
+11
-1
@@ -281,16 +281,26 @@ const Tool::Item &Core::tool() const
|
||||
return tool_;
|
||||
}
|
||||
|
||||
const Tool::AddableObject &Core::selected_addable_object() const
|
||||
const Tool::AddableObject &Core::GetSelectedAddableObject() const
|
||||
{
|
||||
return addable_object_;
|
||||
}
|
||||
|
||||
const QString &Core::GetSelectedTransition() const
|
||||
{
|
||||
return selected_transition_;
|
||||
}
|
||||
|
||||
void Core::SetSelectedAddableObject(const Tool::AddableObject &obj)
|
||||
{
|
||||
addable_object_ = obj;
|
||||
}
|
||||
|
||||
void Core::SetSelectedTransitionObject(const QString &obj)
|
||||
{
|
||||
selected_transition_ = obj;
|
||||
}
|
||||
|
||||
void Core::ClearOpenRecentList()
|
||||
{
|
||||
recent_projects_.clear();
|
||||
|
||||
Reference in New Issue
Block a user