diff --git a/resources/icons/userguide.svg b/resources/icons/userguide.svg
new file mode 100644
index 0000000..d44f326
--- /dev/null
+++ b/resources/icons/userguide.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp
index d1267aa..29383c1 100644
--- a/src/slic3r/GUI/MainFrame.cpp
+++ b/src/slic3r/GUI/MainFrame.cpp
@@ -862,10 +862,10 @@ void MainFrame::create_preset_tabs()
dynamic_cast(m_tabpanel)->AddPage(m_printer_view, _L("Device"), "tab_monitor_active");
//B28
m_guide_view = new GuideWebView(m_tabpanel);
- wxString url = wxString::Format("file://%s/web/qidi/missing_connection.html", from_u8(resources_dir()));
+ wxString url = wxString::Format("file://%s/web/guide/index.html", from_u8(resources_dir()));
m_guide_view->load_url(url);
m_guide_view->Hide();
- dynamic_cast(m_tabpanel)->AddPage(m_guide_view, _L("Guide"), "notification_preferences");
+ dynamic_cast(m_tabpanel)->AddPage(m_guide_view, _L("Guide"), "userguide");
}
void MainFrame::add_created_tab(Tab* panel, const std::string& bmp_name /*= ""*/)