mirror of
https://github.com/spacedeck/spacedeck-open.git
synced 2025-12-16 01:47:30 +01:00
Merge pull request #130 from johanjeppsson/mnt
Use active stroke/fill/text settings for shapes and notes
This commit is contained in:
@@ -1723,10 +1723,10 @@ var SpacedeckSections = {
|
|||||||
z: point.z,
|
z: point.z,
|
||||||
w: w,
|
w: w,
|
||||||
h: h,
|
h: h,
|
||||||
stroke_color: "#ffffff",
|
stroke_color: this.active_style.stroke_color,
|
||||||
text_color: "#ffffff",
|
text_color: this.active_style.text_color,
|
||||||
stroke: 0,
|
stroke: 0,
|
||||||
fill_color: "#000000",
|
fill_color: this.active_style.fill_color,
|
||||||
shape: shape_type,
|
shape: shape_type,
|
||||||
valign: "middle",
|
valign: "middle",
|
||||||
align: "center",
|
align: "center",
|
||||||
|
|||||||
@@ -549,8 +549,9 @@ function setup_whiteboard_directives() {
|
|||||||
h: note_h,
|
h: note_h,
|
||||||
align: "center",
|
align: "center",
|
||||||
valign: "middle",
|
valign: "middle",
|
||||||
stroke_color: "#000000",
|
stroke_color: $scope.active_style.stroke_color,
|
||||||
fill_color: "rgb(241, 196, 15)",
|
text_color: $scope.active_style.text_color,
|
||||||
|
fill_color: $scope.active_style.fill_color,
|
||||||
stroke: 0,
|
stroke: 0,
|
||||||
padding_left: 10,
|
padding_left: 10,
|
||||||
padding_right: 10,
|
padding_right: 10,
|
||||||
|
|||||||
Reference in New Issue
Block a user