Improve labels for V notch.

This commit is contained in:
Roman Telezhynskyi 2023-02-17 09:47:54 +02:00
parent e3a8cef544
commit a40ce741ad
3 changed files with 10 additions and 10 deletions

View file

@ -14,6 +14,7 @@
- [smart-pattern/valentina#189] Fix regression in dialog Known measurements.
- New option. Default piece label template for new pieces.
- Shortcut to quickly enable/disable Interactive tools mode.
- Improve labels for V notch.
# Valentina 0.7.52 September 12, 2022
- Fix crash when default locale is ru.

View file

@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>394</width>
<height>552</height>
<width>426</width>
<height>556</height>
</rect>
</property>
<property name="windowTitle">
@ -24,8 +24,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>374</width>
<height>532</height>
<width>406</width>
<height>536</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_5">
@ -167,7 +167,6 @@
<property name="font">
<font>
<pointsize>36</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
@ -348,7 +347,7 @@
<string>Acute angle that looks inside of piece</string>
</property>
<property name="text">
<string>V mark</string>
<string>External V mark</string>
</property>
<attribute name="buttonGroup">
<string notr="true">buttonGroupLineType</string>
@ -364,7 +363,7 @@
<string>Acute angle that looks outside of piece</string>
</property>
<property name="text">
<string>V mark 2</string>
<string>Internal V mark</string>
</property>
<attribute name="buttonGroup">
<string notr="true">buttonGroupLineType</string>
@ -574,7 +573,7 @@
</resources>
<connections/>
<buttongroups>
<buttongroup name="buttonGroupLineType"/>
<buttongroup name="buttonGroupAngleType"/>
<buttongroup name="buttonGroupLineType"/>
</buttongroups>
</ui>

View file

@ -515,9 +515,9 @@ void VNodePoint::InitPassmarkLineTypeMenu(QMenu *menu, vidtype pieceId, QHash<in
contextMenu.insert(static_cast<int>(ContextMenuOption::TMark),
InitPassmarkLineTypeAction(tr("T mark"), PassmarkLineType::TMark));
contextMenu.insert(static_cast<int>(ContextMenuOption::VMark),
InitPassmarkLineTypeAction(tr("V mark"), PassmarkLineType::VMark));
InitPassmarkLineTypeAction(tr("External V mark"), PassmarkLineType::VMark));
contextMenu.insert(static_cast<int>(ContextMenuOption::VMark2),
InitPassmarkLineTypeAction(tr("V mark 2"), PassmarkLineType::VMark2));
InitPassmarkLineTypeAction(tr("Internal V mark"), PassmarkLineType::VMark2));
contextMenu.insert(static_cast<int>(ContextMenuOption::UMark),
InitPassmarkLineTypeAction(tr("U mark"), PassmarkLineType::UMark));
contextMenu.insert(static_cast<int>(ContextMenuOption::BoxMark),