mirror of
https://github.com/MaurycyLiebner/enve.git
synced 2024-12-20 07:32:08 +00:00
Compare commits
4 Commits
6dd0f78f51
...
831c4b5cb8
Author | SHA1 | Date | |
---|---|---|---|
|
831c4b5cb8 | ||
|
77baba3526 | ||
|
445d2ad2ca | ||
|
ee308252a2 |
@ -193,7 +193,6 @@ void RenderHandler::interruptPreview() {
|
||||
|
||||
void RenderHandler::outOfMemory() {
|
||||
if(mRenderingPreview) {
|
||||
TaskScheduler::sClearTasks();
|
||||
playPreview();
|
||||
}
|
||||
}
|
||||
|
BIN
src/app/tips/17.gif
Normal file
BIN
src/app/tips/17.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 33 KiB |
2
src/app/tips/17.txt
Normal file
2
src/app/tips/17.txt
Normal file
@ -0,0 +1,2 @@
|
||||
Adding Nodes
|
||||
You can add nodes to existing paths by clicking on them while holding <b>CTRL</b>.
|
@ -83,7 +83,6 @@ Node Node::sInterpolateNormal(const Node &node1, const Node &node2,
|
||||
} else {
|
||||
result.mCtrlsMode = CtrlsMode::symmetric;
|
||||
}
|
||||
result.setCtrlsMode(result.mCtrlsMode);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@ -93,8 +93,6 @@ int SmartPath::actionInsertNodeBetween(const int prevId,
|
||||
const auto next = getNodePtr(nextId);
|
||||
|
||||
if(!mNodesList.nodesConnected(prevId, nextId)) {
|
||||
if(!prev->isNormal() || !next->isNormal())
|
||||
RuntimeThrow("Invalid insert between not connected nodes");
|
||||
const int prevNormalId = prev->getNodeId();
|
||||
const int nextNormalId = next->getNodeId();
|
||||
const int nDiss = prevNormalId < nextNormalId ?
|
||||
|
Loading…
Reference in New Issue
Block a user