- in Geometry Editor added support for Jump To function such as that it works within the Editor Tools themselves. For now it works only in absolute jumps
This commit is contained in:
@@ -237,6 +237,9 @@ class App(QtCore.QObject):
|
||||
# should be disconnected after use so it can be reused
|
||||
replot_signal = pyqtSignal(list)
|
||||
|
||||
# signal emitted when jumping
|
||||
jump_signal = pyqtSignal(tuple)
|
||||
|
||||
def __init__(self, user_defaults=True):
|
||||
"""
|
||||
Starts the application.
|
||||
@@ -7390,6 +7393,8 @@ class App(QtCore.QObject):
|
||||
else:
|
||||
location = custom_location
|
||||
|
||||
self.jump_signal.emit(location)
|
||||
|
||||
units = self.defaults['units'].upper()
|
||||
|
||||
if fit_center:
|
||||
|
||||
Reference in New Issue
Block a user