mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-22 19:50:44 +00:00
Improvements / Fixes for RadioGroup and apply to more windows II (#10089)
* init * Fix issue that `Button` is not focusable on Linux See: https://github.com/SoftFever/OrcaSlicer/pull/10089#issuecomment-3065050902 --------- Co-authored-by: Noisyfox <timemanager.rick@gmail.com>
This commit is contained in:
@@ -133,7 +133,10 @@ bool Button::Enable(bool enable)
|
||||
return result;
|
||||
}
|
||||
|
||||
void Button::SetCanFocus(bool canFocus) { this->canFocus = canFocus; }
|
||||
void Button::SetCanFocus(bool canFocus) {
|
||||
StaticBox::SetCanFocus(canFocus);
|
||||
this->canFocus = canFocus;
|
||||
}
|
||||
|
||||
void Button::SetValue(bool state)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user