mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 08:47:52 -06:00
Fixed the localized PrusaSlicer change log link.
Fixed a typo in the code.
This commit is contained in:
parent
8eb31e6d8d
commit
8f72a0cad8
3 changed files with 4 additions and 3 deletions
|
@ -508,7 +508,7 @@ void SpinCtrl::BUILD() {
|
|||
|
||||
long value;
|
||||
const bool parsed = e.GetString().ToLong(&value);
|
||||
tmp_value = parsed && value >= INT_MIN && <= INT_MAX ? (int)value : UNDEF_VALUE;
|
||||
tmp_value = parsed && value >= INT_MIN && value <= INT_MAX ? (int)value : UNDEF_VALUE;
|
||||
|
||||
#ifdef __WXOSX__
|
||||
// Forcibly set the input value for SpinControl, since the value
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue