mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-29 22:02:10 +00:00
NEW:Revert "add pause print message"
This reverts commit f24178896e2e9701165a3a5df8e711489beb34e5. Reason for revert: pause Change-Id: Ie55d14143a9e5ea9d593cb2ff0196688f3b0345e
This commit is contained in:
@@ -4,6 +4,9 @@
|
||||
#include "TickCode.hpp"
|
||||
#include <imgui/imgui.h>
|
||||
|
||||
#include <set>
|
||||
|
||||
class wxMenu;
|
||||
struct IMGUI_API ImRect;
|
||||
|
||||
namespace Slic3r {
|
||||
@@ -128,7 +131,6 @@ public:
|
||||
void set_menu_enable(bool enable = true) { m_menu_enable = enable; }
|
||||
|
||||
protected:
|
||||
void add_pause_print(std::string pause_print_msg);
|
||||
void add_custom_gcode(std::string custom_gcode);
|
||||
void add_code_as_tick(Type type, int selected_extruder = -1);
|
||||
void delete_tick(const TickCode& tick);
|
||||
@@ -138,7 +140,6 @@ protected:
|
||||
bool horizontal_slider(const char* str_id, int* v, int v_min, int v_max, const ImVec2& size, float scale = 1.0);
|
||||
void render_go_to_layer_dialog(); //menu
|
||||
void render_input_custom_gcode(std::string custom_gcode = ""); //menu
|
||||
void render_add_pause_msg_dialog(std::string pause_print_msg = ""); //menu
|
||||
void render_menu();
|
||||
void render_add_menu(); //menu
|
||||
void render_edit_menu(const TickCode& tick); //menu
|
||||
@@ -183,7 +184,6 @@ private:
|
||||
bool m_menu_enable = true; //menu
|
||||
bool m_show_menu = false; //menu
|
||||
bool m_show_custom_gcode_window = false; //menu
|
||||
bool m_show_pause_print_window = false; //menu
|
||||
bool m_show_go_to_layer_dialog = false; //menu
|
||||
bool m_force_mode_apply = true;
|
||||
bool m_is_wipe_tower = false; // This flag indicates that there is multiple extruder print with wipe tower
|
||||
@@ -228,7 +228,6 @@ private:
|
||||
std::vector<double> m_alternate_values;
|
||||
|
||||
char m_custom_gcode[1024] = { 0 }; //menu
|
||||
char m_pause_print_msg[256] = { 0 }; //menu
|
||||
char m_layer_number[64] = { 0 }; //menu
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user