From c5f465fe7a757b7a8be6d7f86aa964c83afe8129 Mon Sep 17 00:00:00 2001 From: Raul Date: Sat, 29 Nov 2025 17:37:42 -0800 Subject: [PATCH 1/2] Fix error when adding device in LAN mode on macos --- .gitignore | 1 + src/slic3r/GUI/ReleaseNote.cpp | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 52cef73065..b19581825e 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,4 @@ doc/ test.js /.cache/ .clangd +.idea/ \ No newline at end of file diff --git a/src/slic3r/GUI/ReleaseNote.cpp b/src/slic3r/GUI/ReleaseNote.cpp index d5cce903c1..149c5190f9 100644 --- a/src/slic3r/GUI/ReleaseNote.cpp +++ b/src/slic3r/GUI/ReleaseNote.cpp @@ -2043,7 +2043,8 @@ void InputIpAddressDialog::workerThreadFunc(std::string str_ip, std::string str_ detectData.dev_name = sn; detectData.dev_id = sn; detectData.connect_type = "lan"; - detectData.connect_type = "free"; + detectData.bind_state = "free"; + detectData.model_id = model_id; } if (w.expired()) return; From 0393cbbf03c2a3831e3463e00b449e4b82c0b34f Mon Sep 17 00:00:00 2001 From: Raul Date: Mon, 5 Jan 2026 12:45:57 -0800 Subject: [PATCH 2/2] Remove .idea/ from .gitignore --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index b19581825e..52cef73065 100644 --- a/.gitignore +++ b/.gitignore @@ -31,4 +31,3 @@ doc/ test.js /.cache/ .clangd -.idea/ \ No newline at end of file