mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-01-30 23:48:44 +03:00
FIX BUG
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef PRUSASLICER_AABBMESH_H
|
||||
#define PRUSASLICER_AABBMESH_H
|
||||
#ifndef QIDISLICER_AABBMESH_H
|
||||
#define QIDISLICER_AABBMESH_H
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
@@ -202,7 +202,7 @@ void Mouse3DController::init()
|
||||
// Registration is done either by 4letter constant (CFBundleSignature - obsolete
|
||||
//and we dont have that) or Executable name in pascal string(first byte is string lenght).
|
||||
//If no packets are recieved the name might be different - check cmake. If debugging try commenting
|
||||
// set_target_properties(QIDISlicer PROPERTIES OUTPUT_NAME "prusa-slicer")
|
||||
// set_target_properties(QIDISlicer PROPERTIES OUTPUT_NAME "qidi-slicer")
|
||||
clientID = RegisterConnexionClient(
|
||||
0, "\013QIDISlicer", kConnexionClientModeTakeOver, kConnexionMaskAxis);
|
||||
BOOST_LOG_TRIVIAL(info) << "3dx mac handler registered";
|
||||
|
||||
@@ -4143,11 +4143,11 @@ void Plater::priv::on_slicing_update(SlicingStatusEvent &evt)
|
||||
const std::string message_dial = GUI::format("%1% %2% %3%"
|
||||
, _L_PLURAL("You are using template filament preset.", "You are using template filament presets.", templ_cnt)
|
||||
, _u8L("Please note that template presets are not customized for specific printer and should only be used as a starting point for creating your own user presets.")
|
||||
, "<a href=https://help.prusa3d.com/article/template-filaments_467599>https://help.prusa3d.com/</a>"
|
||||
, "<a href=https://qidi3d.com/>https://qidi3d.com/</a>"
|
||||
);
|
||||
BOOST_LOG_TRIVIAL(warning) << message_notif;
|
||||
notification_manager->push_slicing_warning_notification(message_notif, false, 0, 0, "https://help.prusa3d.com/",
|
||||
[](wxEvtHandler* evnthndlr) { wxGetApp().open_browser_with_warning_dialog("https://help.prusa3d.com/article/template-filaments_467599"); return false; }
|
||||
notification_manager->push_slicing_warning_notification(message_notif, false, 0, 0, "https://qidi3d.com/",
|
||||
[](wxEvtHandler* evnthndlr) { wxGetApp().open_browser_with_warning_dialog("https://qidi3d.com/"); return false; }
|
||||
);
|
||||
add_warning({ PrintStateBase::WarningLevel::CRITICAL, true, message_dial, 0}, 0);
|
||||
}
|
||||
|
||||
@@ -466,7 +466,6 @@ void Tab::OnActivate()
|
||||
Refresh(); // Just refresh page, if m_presets_choice is already shown
|
||||
else {
|
||||
// From the tab creation whole top sizer is hidden to correct update of preset combobox's size
|
||||
// (see https://github.com/prusa3d/PrusaSlicer/issues/10746)
|
||||
|
||||
// On first OnActivate call show top sizer
|
||||
m_top_hsizer->ShowItems(true);
|
||||
|
||||
Reference in New Issue
Block a user