Fix a bed type regression (#6893)

This commit is contained in:
SoftFever 2024-09-24 19:42:47 +08:00 committed by GitHub
parent cc950f2016
commit 473c7fb3ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 20 additions and 14 deletions

View file

@ -781,6 +781,8 @@ public:
};
std::atomic<bool> m_arrange_running{false};
bool is_loading_project() const { return m_loading_project; }
private:
struct priv;
std::unique_ptr<priv> p;