mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Merge pull request #13106 from digitalfrost/240822
CuraSceneController.py : Fix problem with log message and use f-string
This commit is contained in:
commit
d843921c7a
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ class CuraSceneController(QObject):
|
|||
def setActiveBuildPlate(self, nr):
|
||||
if nr == self._active_build_plate:
|
||||
return
|
||||
Logger.log("d", "Select build plate: %s" % nr)
|
||||
Logger.debug(f"Selected build plate: {nr}")
|
||||
self._active_build_plate = nr
|
||||
Selection.clear()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue