added conflict free shortcuts (#28036)

Co-authored-by: Parag Debnath <[email protected]>
This commit is contained in:
Parag Debnath
2026-03-04 20:57:30 +01:00
committed by GitHub
co-authored by Parag Debnath
parent 637463ac35
commit 2db12d8a66
2 changed files with 13 additions and 13 deletions
+4 -4
View File
@@ -206,10 +206,10 @@ def setStatusIcons(show=True):
translate(
"BIM",
"The value of the nudge movement (rotation is always 45°)."
"CTRL+arrows to move\nCTRL+, to rotate left"
"CTRL+. to rotate right\nCTRL+PgUp to extend extrusion"
"CTRL+PgDown to shrink extrusion"
"CTRL+/ to switch between auto and manual mode",
"Alt+arrows to move\nAlt+, to rotate left"
"Alt+. to rotate right\nAlt+PgUp to extend extrusion"
"Alt+PgDown to shrink extrusion"
"Alt+/ to switch between auto and manual mode",
)
)
statuswidget.addWidget(nudge)
+9 -9
View File
@@ -125,7 +125,7 @@ class BIM_Nudge_Switch(BIM_Nudge):
def GetResources(self):
return {
"MenuText": QT_TRANSLATE_NOOP("BIM_Nudge_Switch", "Nudge Switch"),
"Accel": "Ctrl+/",
"Accel": "Alt+/",
}
def Activated(self):
@@ -151,7 +151,7 @@ class BIM_Nudge_Up(BIM_Nudge):
def GetResources(self):
return {
"MenuText": QT_TRANSLATE_NOOP("BIM_Nudge_Up", "Nudge Up"),
"Accel": "Ctrl+Up",
"Accel": "Alt+Up",
}
def Activated(self):
@@ -171,7 +171,7 @@ class BIM_Nudge_Down(BIM_Nudge):
def GetResources(self):
return {
"MenuText": QT_TRANSLATE_NOOP("BIM_Nudge_Down", "Nudge Down"),
"Accel": "Ctrl+Down",
"Accel": "Alt+Down",
}
def Activated(self):
@@ -191,7 +191,7 @@ class BIM_Nudge_Left(BIM_Nudge):
def GetResources(self):
return {
"MenuText": QT_TRANSLATE_NOOP("BIM_Nudge_Left", "Nudge Left"),
"Accel": "Ctrl+Left",
"Accel": "Alt+Left",
}
def Activated(self):
@@ -211,7 +211,7 @@ class BIM_Nudge_Right(BIM_Nudge):
def GetResources(self):
return {
"MenuText": QT_TRANSLATE_NOOP("BIM_Nudge_Right", "Nudge Right"),
"Accel": "Ctrl+Right",
"Accel": "Alt+Right",
}
def Activated(self):
@@ -231,7 +231,7 @@ class BIM_Nudge_Extend(BIM_Nudge):
def GetResources(self):
return {
"MenuText": QT_TRANSLATE_NOOP("BIM_Nudge_Extend", "Nudge Extend"),
"Accel": "Ctrl+PgUp",
"Accel": "Alt+PgUp",
}
def Activated(self):
@@ -255,7 +255,7 @@ class BIM_Nudge_Shrink(BIM_Nudge):
def GetResources(self):
return {
"MenuText": QT_TRANSLATE_NOOP("BIM_Nudge_Shrink", "Nudge Shrink"),
"Accel": "Ctrl+PgDown",
"Accel": "Alt+PgDown",
}
def Activated(self):
@@ -279,7 +279,7 @@ class BIM_Nudge_RotateLeft(BIM_Nudge):
def GetResources(self):
return {
"MenuText": QT_TRANSLATE_NOOP("BIM_Nudge_RotateLeft", "Nudge Rotate Left"),
"Accel": "Ctrl+,",
"Accel": "Alt+,",
}
def Activated(self):
@@ -308,7 +308,7 @@ class BIM_Nudge_RotateRight(BIM_Nudge):
def GetResources(self):
return {
"MenuText": QT_TRANSLATE_NOOP("BIM_Nudge_RotateRight", "Nudge Rotate Right"),
"Accel": "Ctrl+.",
"Accel": "Alt+.",
}
def Activated(self):