This commit is contained in:
ljqing 2023-02-09 09:50:54 +08:00
parent 0e413d7aee
commit fa0194d4b9
1 changed files with 2 additions and 2 deletions

View File

@ -176,7 +176,7 @@ export default defineComponent({
set?.SetBlendingOption("blending_grids_show_column", RowsColumns[type] + ""); set?.SetBlendingOption("blending_grids_show_column", RowsColumns[type] + "");
break; break;
case 2: case 2:
set?.SetBlendingOption("blending_grids_show_center_line", RowsColumns[type] + ""); set?.SetBlendingOption("blending_grids_show_ellipse", RowsColumns[type] + "");
break; break;
case 3: case 3:
@ -196,7 +196,7 @@ export default defineComponent({
color[2] = server_conf.blending_grids_ellipse_line_color ?? "#0000ff" color[2] = server_conf.blending_grids_ellipse_line_color ?? "#0000ff"
RowsColumns[0] = server_conf.blending_grids_show_row === "false" ? false : true RowsColumns[0] = server_conf.blending_grids_show_row === "false" ? false : true
RowsColumns[1] = server_conf.blending_grids_show_column === "false" ? false : true RowsColumns[1] = server_conf.blending_grids_show_column === "false" ? false : true
RowsColumns[2] = server_conf.blending_grids_show_center_line === "false" ? false : true RowsColumns[2] = server_conf.blending_grids_show_ellipse === "false" ? false : true
} }
use_server_config() use_server_config()