Reconcile implementation split with PR tip

This commit is contained in:
Ian Chua
2026-08-04 18:12:51 +08:00
parent f23e4963bf
commit 07c62112b8
3 changed files with 54 additions and 12 deletions

View File

@@ -52,6 +52,9 @@ public:
// swap path can reuse it instead of duplicating the two sidebar calls.
void OnSelectedMachineLost();
void record_user_last_machine(const std::string& dev_id);
std::string get_user_last_machine() const;
// local machine
void set_local_selected_machine(std::string dev_id) { local_selected_machine = dev_id; };
MachineObject* get_local_selected_machine() const { return get_local_machine(local_selected_machine); }
@@ -143,4 +146,4 @@ public:
protected:
virtual void on_timer(wxTimerEvent& event);
};
};
};