Skip to content

Commit

Permalink
Fix indentation dance
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Dec 16, 2021
1 parent 86e94ae commit 89ee628
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/processing/qgsprocessingalgorithmdialogbase.cpp
Expand Up @@ -247,7 +247,8 @@ QgsProcessingAlgorithmDialogBase::QgsProcessingAlgorithmDialogBase( QWidget *par

connect( mAdvancedMenu, &QMenu::aboutToShow, this, [ = ]
{
mCopyAsQgisProcessCommand->setEnabled( algorithm() && !( algorithm()->flags() & QgsProcessingAlgorithm::FlagNotAvailableInStandaloneTool ) );
mCopyAsQgisProcessCommand->setEnabled( algorithm()
&& !( algorithm()->flags() & QgsProcessingAlgorithm::FlagNotAvailableInStandaloneTool ) );
mPasteJsonAction->setEnabled( !QApplication::clipboard()->text().isEmpty() );
} );

Expand Down

0 comments on commit 89ee628

Please sign in to comment.