Skip to content
Snippets Groups Projects
Unverified Commit 6e421e60 authored by GyDi's avatar GyDi
Browse files

fix: change default column to auto

parent 83850508
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,6 @@ impl IVerge {
proxy_guard_duration: Some(30),
auto_close_connection: Some(true),
enable_builtin_enhanced: Some(true),
proxy_layout_column: Some(1),
..Self::default()
}
}
......
......@@ -31,10 +31,10 @@ export const useRenderList = (mode: string) => {
const { verge } = useVerge();
const { width } = useWindowWidth();
let col = verge?.proxy_layout_column || 1;
let col = Math.floor(verge?.proxy_layout_column || 6);
// 自适应
if (col === 6) {
if (col >= 6 || col <= 0) {
if (width > 1450) col = 5;
else if (width > 1024) col = 4;
else if (width > 900) col = 3;
......
......@@ -21,7 +21,7 @@ export const MiscViewer = forwardRef<DialogRef>((props, ref) => {
const [values, setValues] = useState({
autoCloseConnection: false,
enableBuiltinEnhanced: true,
proxyLayoutColumn: 1,
proxyLayoutColumn: 6,
defaultLatencyTest: "",
});
......@@ -31,7 +31,7 @@ export const MiscViewer = forwardRef<DialogRef>((props, ref) => {
setValues({
autoCloseConnection: verge?.auto_close_connection ?? false,
enableBuiltinEnhanced: verge?.enable_builtin_enhanced ?? true,
proxyLayoutColumn: verge?.proxy_layout_column || 1,
proxyLayoutColumn: verge?.proxy_layout_column || 6,
defaultLatencyTest: verge?.default_latency_test || "",
});
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment