ENH:optimized the retry of requests

jira:[for network optimized]

Change-Id: Iea43f4a97c7cd568171287278a07689e954d1093
(cherry picked from commit 35d3de8abe63a0cba30948581ed26a8bc7f94162)
(cherry picked from commit 30bad38fb979f5c5a10e4b869ec2e41fa99857f8)
This commit is contained in:
tao wang 2024-09-16 22:29:39 +08:00 committed by Noisyfox
parent 569d4e6307
commit 8bb7ea7cfc
7 changed files with 156 additions and 2 deletions

View file

@ -410,6 +410,22 @@ private:
wxStaticText *m_msg_text = nullptr;
};
class NetworkErrorDialog : public DPIDialog
{
public:
NetworkErrorDialog(wxWindow* parent);
~NetworkErrorDialog() {};
virtual void on_dpi_changed(const wxRect& suggested_rect) {};
private:
Label* m_text_basic;
wxHyperlinkCtrl* m_link_server_state;
Label* m_text_proposal;
wxHyperlinkCtrl* m_text_wiki;
Button* m_button_confirm;
};
}
}