- in Geometry Editor - the Length and Vertex Points GUI elements are now read only since it does not make sense to edit them
This commit is contained in:
committed by
Marius Stanciu
parent
bdabd6cfdf
commit
32839637d3
@@ -13,6 +13,7 @@ CHANGELOG for FlatCAM beta
|
|||||||
- in Geometry Editor - improvement in update of the whole Geometry Editor UI on shape selection on canvas
|
- in Geometry Editor - improvement in update of the whole Geometry Editor UI on shape selection on canvas
|
||||||
- in Geometry Editor - fixed multiple plotting for the same selection
|
- in Geometry Editor - fixed multiple plotting for the same selection
|
||||||
- in Geometry Editor - made sure that selecting shapes on canvas will update the UI - final fix
|
- in Geometry Editor - made sure that selecting shapes on canvas will update the UI - final fix
|
||||||
|
- in Geometry Editor - the Length and Vertex Points GUI elements are now read only since it does not make sense to edit them
|
||||||
|
|
||||||
28.11.2020
|
28.11.2020
|
||||||
|
|
||||||
|
|||||||
@@ -3474,6 +3474,8 @@ class AppGeoEditor(QtCore.QObject):
|
|||||||
_("The length of the geometry element.")
|
_("The length of the geometry element.")
|
||||||
)
|
)
|
||||||
self.geo_len_entry = FCEntry(decimals=self.decimals)
|
self.geo_len_entry = FCEntry(decimals=self.decimals)
|
||||||
|
self.geo_len_entry.setReadOnly(True)
|
||||||
|
|
||||||
grid0.addWidget(len_lbl, 20, 0)
|
grid0.addWidget(len_lbl, 20, 0)
|
||||||
grid0.addWidget(self.geo_len_entry, 20, 1, 1, 2)
|
grid0.addWidget(self.geo_len_entry, 20, 1, 1, 2)
|
||||||
|
|
||||||
@@ -3496,6 +3498,7 @@ class AppGeoEditor(QtCore.QObject):
|
|||||||
_("The number of vertex points in the selected geometry element.")
|
_("The number of vertex points in the selected geometry element.")
|
||||||
)
|
)
|
||||||
self.geo_vertex_entry = FCEntry(decimals=self.decimals)
|
self.geo_vertex_entry = FCEntry(decimals=self.decimals)
|
||||||
|
self.geo_vertex_entry.setReadOnly(True)
|
||||||
|
|
||||||
grid0.addWidget(vertex_lbl, 26, 0)
|
grid0.addWidget(vertex_lbl, 26, 0)
|
||||||
grid0.addWidget(self.geo_vertex_entry, 26, 1, 1, 2)
|
grid0.addWidget(self.geo_vertex_entry, 26, 1, 1, 2)
|
||||||
|
|||||||
Reference in New Issue
Block a user