Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken compatibility with QGIS 3.18 #613

Merged
merged 1 commit into from
Sep 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions qfieldsync/gui/mapthemes_config_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
***************************************************************************/
"""

from qgis.core import Qgis
from qgis.core import QgsMapLayerProxyModel
from qgis.gui import QgsMapLayerComboBox

from qgis.PyQt.QtCore import Qt
Expand Down Expand Up @@ -61,7 +61,7 @@ def reload(self, configuration):
cmb = QgsMapLayerComboBox()
cmb.setAllowEmptyLayer(True)
cmb.setProject(self.project)
cmb.setFilters(Qgis.LayerFilter.VectorLayer)
cmb.setFilters(QgsMapLayerProxyModel.VectorLayer)
if map_theme in configuration:
cmb.setLayer(self.project.mapLayer(configuration[map_theme]))
self.setCellWidget(count, 1, cmb)
Expand Down
Loading