mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 09:33:29 +02:00
Merge branch 'master' of github.com:highfidelity/hifi into actions-over-wire-and-sim-ownership
This commit is contained in:
commit
0a734c9d3d
4 changed files with 19 additions and 7 deletions
BIN
interface/resources/images/link.png
Normal file
BIN
interface/resources/images/link.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 43 KiB |
|
@ -21,8 +21,8 @@ Hifi.Tooltip {
|
|||
|
||||
Rectangle {
|
||||
id: border
|
||||
color: "#7f000000"
|
||||
width: 322
|
||||
color: "#BF000000"
|
||||
width: 330
|
||||
height: col.height + hifi.layout.spacing * 2
|
||||
|
||||
Column {
|
||||
|
@ -40,6 +40,7 @@ Hifi.Tooltip {
|
|||
color: "white"
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
font.pixelSize: hifi.fonts.pixelSize * 2
|
||||
text: root.title
|
||||
wrapMode: Text.WrapAnywhere
|
||||
|
@ -61,6 +62,12 @@ Hifi.Tooltip {
|
|||
anchors.right: parent.right
|
||||
}
|
||||
|
||||
Item {
|
||||
id: firstSpacer
|
||||
width: col.width
|
||||
height: 5
|
||||
}
|
||||
|
||||
Image {
|
||||
id: tooltipPic
|
||||
source: root.imageURL
|
||||
|
@ -68,7 +75,12 @@ Hifi.Tooltip {
|
|||
width: 320
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
verticalAlignment: Image.AlignVCenter
|
||||
}
|
||||
|
||||
Item {
|
||||
id: secondSpacer
|
||||
width: col.width
|
||||
height: 5
|
||||
}
|
||||
|
||||
Text {
|
||||
|
@ -78,8 +90,8 @@ Hifi.Tooltip {
|
|||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
text: root.description
|
||||
font.pixelSize: hifi.fonts.pixelSize
|
||||
wrapMode: Text.WrapAnywhere
|
||||
font.pixelSize: 16
|
||||
wrapMode: Text.WordWrap
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
const xColor DEFAULT_BACKGROUND_COLOR = { 0, 0, 0 };
|
||||
const float DEFAULT_BACKGROUND_ALPHA = 0.7f;
|
||||
const int DEFAULT_MARGIN = 10;
|
||||
const int DEFAULT_FONTSIZE = 11;
|
||||
const int DEFAULT_FONTSIZE = 12;
|
||||
const int DEFAULT_FONT_WEIGHT = 50;
|
||||
|
||||
class TextRenderer;
|
||||
|
|
|
@ -50,7 +50,7 @@ namespace Cursor {
|
|||
|
||||
Manager::Manager() {
|
||||
ICONS[Icon::DEFAULT] = PathUtils::resourcesPath() + "images/arrow.png";
|
||||
ICONS[Icon::LINK] = PathUtils::resourcesPath() + "images/reticleLink.png";
|
||||
ICONS[Icon::LINK] = PathUtils::resourcesPath() + "images/link.png";
|
||||
}
|
||||
|
||||
Manager& Manager::instance() {
|
||||
|
|
Loading…
Reference in a new issue