Skip to content

Commit

Permalink
preferences dialog adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
domlysz committed Nov 24, 2020
1 parent b0fbf67 commit a738289
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions prefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,6 @@ def draw(self, context):
row.operator("bgis.edit_predef_crs", icon='PREFERENCES')
row.operator("bgis.rmv_predef_crs", icon='REMOVE')
row.operator("bgis.reset_predef_crs", icon='PLAY_REVERSE')
box.prop(self, "projEngine")
box.prop(self, "imgEngine")

#Basemaps
box = layout.box()
Expand Down Expand Up @@ -319,7 +317,7 @@ def draw(self, context):

#Network
box = layout.box()
box.label(text='Network')
box.label(text='Remote datasource')
row = box.row().split(factor=0.5)
row.prop(self, "overpassServer")
row.operator("bgis.add_overpass_server", icon='ADD')
Expand All @@ -336,6 +334,8 @@ def draw(self, context):
#System
box = layout.box()
box.label(text='System')
box.prop(self, "projEngine")
box.prop(self, "imgEngine")
box.prop(self, "logLevel")

#######################
Expand Down

0 comments on commit a738289

Please sign in to comment.