File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ const formulaTextRef = ref<HTMLDivElement | null>(null);
300
300
const fontSize = ref (MAX_FONT_SIZE );
301
301
const isCircleStyle = ref (false );
302
302
const showExpression = ref (false );
303
- const horizontalLayout = ref (false ); // 添加horizontalLayout变量
303
+ const horizontalLayout = ref (true ); // 添加horizontalLayout变量
304
304
305
305
// 计算属性
306
306
const canUndo = computed (() => historyIndex .value > 0 );
@@ -1412,7 +1412,7 @@ const loadSettings = () => {
1412
1412
autoCompleteBrackets: localSettings .autoCompleteBrackets ?? false ,
1413
1413
bracketColorEnabled: localSettings .bracketColorEnabled ?? false ,
1414
1414
isDarkMode: localSettings .isDarkMode ?? false ,
1415
- horizontalLayout: localSettings .horizontalLayout ?? false
1415
+ horizontalLayout: localSettings .horizontalLayout ?? true
1416
1416
};
1417
1417
1418
1418
autoCompleteBrackets .value = settings .autoCompleteBrackets ;
You can’t perform that action at this time.
0 commit comments