Rearrange the tool options to they're in the same order for each tool, giving a more...
[synfig.git] / synfig-studio / trunk / src / gtkmm / workarea.cpp
index 5f17dc1..e42457d 100644 (file)
@@ -1374,7 +1374,7 @@ WorkArea::on_drawing_area_event(GdkEvent *event)
                                                        if (get_canvas_view()->canvas_interface()->
                                                                change_value(synfigapp::ValueDesc(parent_value_node,
                                                                                                                                  parent_value_node->get_link_index_from_name("split")),
-                                                                                        true);
+                                                                                        true))
                                                        {
                                                                // rebuild the ducks from scratch, so the tangents ducks aren't connected
                                                                get_canvas_view()->rebuild_ducks();
@@ -2283,7 +2283,7 @@ studio::WorkArea::async_update_preview()
        // if we have lots of pixels to render and the tile renderer isn't disabled, use it
        int div;
        div = low_resolution ? low_res_pixel_size : 1;
-       if (w*h > 240*div*135*div && !getenv("SYNFIG_DISABLE_TILE_RENDER"))
+       if ((w*h > 240*div*135*div && !getenv("SYNFIG_DISABLE_TILE_RENDER")) || getenv("SYNFIG_FORCE_TILE_RENDER"))
        {
                // do a tile render
                handle<WorkAreaTarget> trgt(new class WorkAreaTarget(this,w,h));