Skip to content

Commit

Permalink
Properly name the QFieldSync toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jan 5, 2024
1 parent aeda9d3 commit 27a172f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qfieldsync/qfield_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ def __init__(self, iface):
self.actions = []
self.menu = self.tr("&QFieldSync")
# TODO: We are going to let the user set this up in a future iteration
self.toolbar = self.iface.addToolBar("QFieldSync")
self.toolbar.setObjectName("QFieldSync")
self.toolbar = self.iface.addToolBar(self.tr("QFieldSync Toolbar"))
self.toolbar.setObjectName("QFieldSync Toolbar")

# instance of the map config widget factory, shown in layer properties
self.mapLayerConfigWidgetFactory = MapLayerConfigWidgetFactory(
Expand Down

0 comments on commit 27a172f

Please sign in to comment.