summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/livecode-tool.cpp
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2019-12-02 20:33:28 +0000
committers-ol <s-ol@users.noreply.github.com>2019-12-02 20:33:28 +0000
commit1b69cd09de1e70d36cbca5f0c4a3f289ec684343 (patch)
tree42a91646b60d7879c1d541e921adddff4052a732 /src/ui/tools/livecode-tool.cpp
parentadd draft janet interface for livecoding (diff)
downloadinkscape-1b69cd09de1e70d36cbca5f0c4a3f289ec684343.tar.gz
inkscape-1b69cd09de1e70d36cbca5f0c4a3f289ec684343.zip
more janet bindings
Diffstat (limited to 'src/ui/tools/livecode-tool.cpp')
-rw-r--r--src/ui/tools/livecode-tool.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui/tools/livecode-tool.cpp b/src/ui/tools/livecode-tool.cpp
index 8b096dbf0..ae332b13c 100644
--- a/src/ui/tools/livecode-tool.cpp
+++ b/src/ui/tools/livecode-tool.cpp
@@ -100,13 +100,15 @@ static Geom::Rect rect(Geom::Point(20, 200), Geom::Point(220, 20));
bool LivecodeTool::handle_tick(Glib::RefPtr<Gdk::FrameClock> const &frame_clock)
{
- context.setup_frame();
+ context.frame();
+/*
context.input_point("p", &p);
context.input_arrow("a->b", &a, &b);
context.input_rect("rect", &rect);
context.finish_frame();
+*/
return true;
}