mirror of
https://github.com/spacedeck/spacedeck-open.git
synced 2025-12-15 17:37:30 +01:00
touch: fix vector transforming (points of arrows, scribbles)
This commit is contained in:
@@ -1019,8 +1019,7 @@ var SpacedeckSections = {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
update_selection_metrics: function(arts) {
|
update_selection_metrics: function(arts, temporary) {
|
||||||
|
|
||||||
if (this.active_tool == "scribble") {
|
if (this.active_tool == "scribble") {
|
||||||
this.selection_metrics.count = 1;
|
this.selection_metrics.count = 1;
|
||||||
return;
|
return;
|
||||||
@@ -1053,8 +1052,6 @@ var SpacedeckSections = {
|
|||||||
// FIXME make sure that menus fit in window
|
// FIXME make sure that menus fit in window
|
||||||
this.toolbar_props_x = pp.x+"px";
|
this.toolbar_props_x = pp.x+"px";
|
||||||
this.toolbar_props_y = pp.y+"px";
|
this.toolbar_props_y = pp.y+"px";
|
||||||
|
|
||||||
//this.hide_toolbar_artifacts();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.selection_metrics.x1 = sr.x1;
|
this.selection_metrics.x1 = sr.x1;
|
||||||
@@ -1069,6 +1066,7 @@ var SpacedeckSections = {
|
|||||||
|
|
||||||
if (!arts) arts = this.selected_artifacts();
|
if (!arts) arts = this.selected_artifacts();
|
||||||
|
|
||||||
|
if (!temporary) {
|
||||||
this.first_selected_artifact = arts[0];
|
this.first_selected_artifact = arts[0];
|
||||||
this.selection_metrics.count=arts.length;
|
this.selection_metrics.count=arts.length;
|
||||||
this.selection_metrics.scribble_selection = false;
|
this.selection_metrics.scribble_selection = false;
|
||||||
@@ -1088,6 +1086,7 @@ var SpacedeckSections = {
|
|||||||
this.selection_metrics.has_link=true;
|
this.selection_metrics.has_link=true;
|
||||||
this.insert_link_url = arts[0].meta.link_uri;
|
this.insert_link_url = arts[0].meta.link_uri;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
begin_transaction: function() {
|
begin_transaction: function() {
|
||||||
@@ -1436,13 +1435,13 @@ var SpacedeckSections = {
|
|||||||
this.color_picker_rgb = rgb_to_hex(rgba.r,rgba.g,rgba.b);
|
this.color_picker_rgb = rgb_to_hex(rgba.r,rgba.g,rgba.b);
|
||||||
},
|
},
|
||||||
|
|
||||||
update_selected_artifacts: function(change_func, override_locked) {
|
update_selected_artifacts: function(change_func, override_locked, temporary) {
|
||||||
var artifacts = this.selected_artifacts(!override_locked);
|
var artifacts = this.selected_artifacts(!override_locked);
|
||||||
|
|
||||||
if (!artifacts.length) return;
|
if (!artifacts.length) return;
|
||||||
|
|
||||||
this.update_artifacts(artifacts, change_func);
|
this.update_artifacts(artifacts, change_func);
|
||||||
this.update_selection_metrics();
|
this.update_selection_metrics(null, temporary||false);
|
||||||
},
|
},
|
||||||
|
|
||||||
nudge_selected_artifacts: function(dx, dy, event) {
|
nudge_selected_artifacts: function(dx, dy, event) {
|
||||||
|
|||||||
@@ -724,6 +724,9 @@ function setup_whiteboard_directives() {
|
|||||||
|
|
||||||
//save_artifact(ars[i], null, $scope.display_saving_error);
|
//save_artifact(ars[i], null, $scope.display_saving_error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// update vector handles
|
||||||
|
$scope.update_selection_metrics();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.mouse_state == "text_editor") {
|
if (this.mouse_state == "text_editor") {
|
||||||
@@ -942,18 +945,14 @@ function setup_whiteboard_directives() {
|
|||||||
|
|
||||||
// special case for arrow's 3rd point
|
// special case for arrow's 3rd point
|
||||||
if (a.shape == "arrow" && $scope.selected_control_point_idx!=2) {
|
if (a.shape == "arrow" && $scope.selected_control_point_idx!=2) {
|
||||||
/*control_points[2].dx += dx/2;
|
|
||||||
control_points[2].dy += dy/2; */
|
|
||||||
|
|
||||||
control_points[2].dx = (control_points[0].dx+control_points[1].dx)/2;
|
control_points[2].dx = (control_points[0].dx+control_points[1].dx)/2;
|
||||||
control_points[2].dy = (control_points[0].dy+control_points[1].dy)/2;
|
control_points[2].dy = (control_points[0].dy+control_points[1].dy)/2;
|
||||||
}
|
}
|
||||||
|
|
||||||
return _this.normalize_control_points(control_points, old_a);
|
return _this.normalize_control_points(control_points, old_a);
|
||||||
});
|
}, false, true); // override_locked: false, temporary: true
|
||||||
|
|
||||||
} else if (this.mouse_state == "scribble") {
|
} else if (this.mouse_state == "scribble") {
|
||||||
|
|
||||||
$scope.update_selected_artifacts(function(a) {
|
$scope.update_selected_artifacts(function(a) {
|
||||||
var old_a = a;
|
var old_a = a;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user