jira#71179 Use Emoji font in ScrollList by default
parent
27dd9ee482
commit
a6e1f22a99
|
|
@ -81,7 +81,7 @@ public:
|
|||
alt_value("alt_value", ""),
|
||||
label("label"),
|
||||
tool_tip("tool_tip", ""),
|
||||
font("font", LLFontGL::getFontSansSerifSmall()),
|
||||
font("font", LLFontGL::getFontEmojiSmall()),
|
||||
font_color("font_color", LLColor4::black),
|
||||
color("color", LLColor4::white),
|
||||
font_halign("halign", LLFontGL::LEFT)
|
||||
|
|
|
|||
|
|
@ -1810,7 +1810,7 @@ BOOL LLScrollListCtrl::handleToolTip(S32 x, S32 y, MASK mask)
|
|||
// display tooltip exactly over original cell, in same font
|
||||
LLToolTipMgr::instance().show(LLToolTip::Params()
|
||||
.message(hit_cell->getToolTip())
|
||||
.font(LLFontGL::getFontSansSerifSmall())
|
||||
.font(LLFontGL::getFontEmojiSmall())
|
||||
.pos(LLCoordGL(sticky_rect.mLeft - 5, sticky_rect.mTop + 6))
|
||||
.delay_time(0.2f)
|
||||
.sticky_rect(sticky_rect));
|
||||
|
|
@ -3294,7 +3294,7 @@ LLScrollListItem* LLScrollListCtrl::addSimpleElement(const std::string& value, E
|
|||
item_params.value(entry_id);
|
||||
item_params.columns.add()
|
||||
.value(value)
|
||||
.font(LLFontGL::getFontSansSerifSmall());
|
||||
.font(LLFontGL::getFontEmojiSmall());
|
||||
|
||||
return addRow(item_params, pos);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue