mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 08:55:58 +08:00
Eliminating signed comp warning
This commit is contained in:
parent
c73f702922
commit
16ec625483
@ -229,7 +229,7 @@ class Wrapper: public IProgressIndicator, public wxEvtHandler {
|
|||||||
if(!gauge_->IsShown()) showProgress(true);
|
if(!gauge_->IsShown()) showProgress(true);
|
||||||
|
|
||||||
stbar_->SetStatusText(message_);
|
stbar_->SetStatusText(message_);
|
||||||
if(st == gauge_->GetRange()) {
|
if(static_cast<long>(st) == gauge_->GetRange()) {
|
||||||
gauge_->SetValue(0);
|
gauge_->SetValue(0);
|
||||||
showProgress(false);
|
showProgress(false);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user