Turn the detail 90 degrees.
--HG-- branch : develop
This commit is contained in:
parent
7b850afaea
commit
5ee1969f24
|
@ -14,7 +14,7 @@
|
||||||
<string>Create a layout</string>
|
<string>Create a layout</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowIcon">
|
<property name="windowIcon">
|
||||||
<iconset resource="icon.qrc">
|
<iconset resource="../share/resources/icon.qrc">
|
||||||
<normaloff>:/icon/64x64/icon64x64.png</normaloff>:/icon/64x64/icon64x64.png</iconset>
|
<normaloff>:/icon/64x64/icon64x64.png</normaloff>:/icon/64x64/icon64x64.png</iconset>
|
||||||
</property>
|
</property>
|
||||||
<property name="locale">
|
<property name="locale">
|
||||||
|
@ -111,7 +111,7 @@
|
||||||
<string>Turn</string>
|
<string>Turn</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Turn the detail 180 degrees</string>
|
<string>Turn the detail 90 degrees</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionStop">
|
<action name="actionStop">
|
||||||
|
@ -161,7 +161,7 @@
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="icon">
|
<property name="icon">
|
||||||
<iconset resource="icon.qrc">
|
<iconset resource="../share/resources/icon.qrc">
|
||||||
<normaloff>:/icon/16x16/mirror.png</normaloff>:/icon/16x16/mirror.png</iconset>
|
<normaloff>:/icon/16x16/mirror.png</normaloff>:/icon/16x16/mirror.png</iconset>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
@ -199,7 +199,7 @@
|
||||||
</action>
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
<resources>
|
<resources>
|
||||||
<include location="icon.qrc"/>
|
<include location="../share/resources/icon.qrc"/>
|
||||||
</resources>
|
</resources>
|
||||||
<connections/>
|
<connections/>
|
||||||
</ui>
|
</ui>
|
||||||
|
|
|
@ -172,7 +172,7 @@ void VTableGraphicsView::rotateIt()
|
||||||
QGraphicsItem *item = list.at(i);
|
QGraphicsItem *item = list.at(i);
|
||||||
Q_ASSERT(item != 0);
|
Q_ASSERT(item != 0);
|
||||||
item->setTransformOriginPoint(item->boundingRect().center());
|
item->setTransformOriginPoint(item->boundingRect().center());
|
||||||
item->setRotation(item->rotation() + 180);
|
item->setRotation(item->rotation() + 90);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user