Skip to content

Commit

Permalink
Update qfieldsync/gui/layers_config_widget.py
Browse files Browse the repository at this point in the history
Co-authored-by: Ivan Ivanov <[email protected]>
  • Loading branch information
SeqLaz and suricactus authored Jul 16, 2024
1 parent b24734c commit 3fca261
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qfieldsync/gui/layers_config_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ def reloadProject(self):
# Apply filter
if show_visible_only and not layer_visible:
continue
if (text_filter) and (text_filter not in layer_name):

if text_filter and text_filter not in layer_name:
continue

count = self.layersTable.rowCount()
Expand Down

0 comments on commit 3fca261

Please sign in to comment.