mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 07:34:03 -06:00
Eliminating signed comp warning
This commit is contained in:
parent
c73f702922
commit
16ec625483
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ class Wrapper: public IProgressIndicator, public wxEvtHandler {
|
|||
if(!gauge_->IsShown()) showProgress(true);
|
||||
|
||||
stbar_->SetStatusText(message_);
|
||||
if(st == gauge_->GetRange()) {
|
||||
if(static_cast<long>(st) == gauge_->GetRange()) {
|
||||
gauge_->SetValue(0);
|
||||
showProgress(false);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue