FIX:change interface for send

jira:[none]

Change-Id: Ia59bb1bb606399541aa191991ff0fb3f106d75d1
(cherry picked from commit b22af6cfe0a589ae5fa2e95a01ebe47f6742ee99)
This commit is contained in:
milk
2025-10-11 15:42:31 +08:00
committed by Noisyfox
parent a561c1bf13
commit f63cdc30e4
4 changed files with 38 additions and 11 deletions

View File

@@ -5,7 +5,7 @@
#include <wx/tglbtn.h>
namespace Slic3r {
namespace Slic3r {
namespace GUI {
class RadioBox : public wxBitmapToggleButton
@@ -17,11 +17,11 @@ public:
void SetValue(bool value) override;
bool GetValue();
void Rescale();
bool Disable() {
return wxBitmapToggleButton::Disable();
bool Disable() {
return wxBitmapToggleButton::Disable();
}
bool Enable() {
return wxBitmapToggleButton::Enable();
bool Enable() {
return wxBitmapToggleButton::Enable();
}
private:
@@ -30,6 +30,7 @@ private:
private:
ScalableBitmap m_on;
ScalableBitmap m_off;
ScalableBitmap m_ban;
};
}}