mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Revert "Only emit signal when the active extruder actually changes"
This reverts commit 4e8fb254f6
.
This commit is contained in:
parent
06a42d98ee
commit
092f42ef28
1 changed files with 2 additions and 3 deletions
|
@ -96,9 +96,8 @@ class ExtruderManager(QObject):
|
|||
# \param index The index of the new active extruder.
|
||||
@pyqtSlot(int)
|
||||
def setActiveExtruderIndex(self, index):
|
||||
if self._active_extruder_index != index:
|
||||
self._active_extruder_index = index
|
||||
self.activeExtruderChanged.emit()
|
||||
self._active_extruder_index = index
|
||||
self.activeExtruderChanged.emit()
|
||||
|
||||
@pyqtProperty(int, notify = activeExtruderChanged)
|
||||
def activeExtruderIndex(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue