mirror of
https://github.com/leozide/leocad
synced 2025-01-28 19:58:12 +01:00
Added keyboard shortcuts to the Model List Dialog.
This commit is contained in:
parent
85cb751f3e
commit
42151522fc
2 changed files with 6 additions and 6 deletions
|
@ -136,7 +136,7 @@ void lcModelProperties::ParseLDrawLine(QTextStream& Stream)
|
|||
}
|
||||
|
||||
if (Token == QLatin1String("NAME"))
|
||||
mBackgroundImage = Stream.readLine();
|
||||
mBackgroundImage = Stream.readLine().trimmed();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,35 +24,35 @@
|
|||
<item>
|
||||
<widget class="QPushButton" name="NewModel">
|
||||
<property name="text">
|
||||
<string>New...</string>
|
||||
<string>&New</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="DeleteModel">
|
||||
<property name="text">
|
||||
<string>Delete...</string>
|
||||
<string>D&elete...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="RenameModel">
|
||||
<property name="text">
|
||||
<string>Rename...</string>
|
||||
<string>&Rename...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MoveUp">
|
||||
<property name="text">
|
||||
<string>Move Up</string>
|
||||
<string>Move &Up</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="MoveDown">
|
||||
<property name="text">
|
||||
<string>Move Down</string>
|
||||
<string>Move &Down</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
Loading…
Add table
Reference in a new issue