mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 17:27:52 -06:00
Modification of the AboutDialog to be correct showing on dark theme of Linux
This commit is contained in:
parent
6d98c2b1ce
commit
b8fe48c563
2 changed files with 31 additions and 21 deletions
|
@ -106,7 +106,7 @@ namespace Slic3r { namespace GUI {
|
|||
}
|
||||
double val;
|
||||
str.ToCDouble(&val);
|
||||
if (m_opt.min > val && val > m_opt.max)
|
||||
if (m_opt.min > val || val > m_opt.max)
|
||||
{
|
||||
show_error(m_parent, _(L("Input value is out of range")));
|
||||
if (m_opt.min > val) val = m_opt.min;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue