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

View file

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

View file

@ -515,9 +515,9 @@ void VNodePoint::InitPassmarkLineTypeMenu(QMenu *menu, vidtype pieceId, QHash<in
contextMenu.insert(static_cast<int>(ContextMenuOption::TMark), contextMenu.insert(static_cast<int>(ContextMenuOption::TMark),
InitPassmarkLineTypeAction(tr("T mark"), PassmarkLineType::TMark)); InitPassmarkLineTypeAction(tr("T mark"), PassmarkLineType::TMark));
contextMenu.insert(static_cast<int>(ContextMenuOption::VMark), 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), 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), contextMenu.insert(static_cast<int>(ContextMenuOption::UMark),
InitPassmarkLineTypeAction(tr("U mark"), PassmarkLineType::UMark)); InitPassmarkLineTypeAction(tr("U mark"), PassmarkLineType::UMark));
contextMenu.insert(static_cast<int>(ContextMenuOption::BoxMark), contextMenu.insert(static_cast<int>(ContextMenuOption::BoxMark),