Skip to content

Commit

Permalink
Fix inverted writeback condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Ext3h committed Jan 5, 2021
1 parent 257c947 commit e11eba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/xaml/workshopproxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ void WorkshopProxy::onUpdateInfo( const GuiWorkshopInfo& info )

void WorkshopProxy::setBasicOptions( unsigned int WorkshopID, QString name, int priority, bool suspended, bool acceptGenerated, bool autoCraftMissing, bool connectStockpile )
{
if( m_blockWriteBack )
if( !m_blockWriteBack )
{
emit signalSetBasicOptions( WorkshopID, name, priority, suspended, acceptGenerated, autoCraftMissing, connectStockpile );
}
Expand Down

0 comments on commit e11eba1

Please sign in to comment.