Skip to content
Snippets Groups Projects
Commit b4dd4271 authored by Andrey Lihatskiy's avatar Andrey Lihatskiy
Browse files

SL-16874 Added tool tips to buttons displayed by llDialog()

parent ab8dc076
No related branches found
No related tags found
No related merge requests found
...@@ -373,6 +373,7 @@ Charlie Sazaland ...@@ -373,6 +373,7 @@ Charlie Sazaland
Chaser Zaks Chaser Zaks
BUG-225599 BUG-225599
BUG-227485 BUG-227485
SL-16874
Cherry Cheevers Cherry Cheevers
ChickyBabes Zuzu ChickyBabes Zuzu
Chorazin Allen Chorazin Allen
......
...@@ -89,6 +89,7 @@ LLButton* LLToastNotifyPanel::createButton(const LLSD& form_element, BOOL is_opt ...@@ -89,6 +89,7 @@ LLButton* LLToastNotifyPanel::createButton(const LLSD& form_element, BOOL is_opt
const LLFontGL* font = make_small_btn ? sFontSmall: sFont; // for block and ignore buttons in script dialog const LLFontGL* font = make_small_btn ? sFontSmall: sFont; // for block and ignore buttons in script dialog
p.name = form_element["name"].asString(); p.name = form_element["name"].asString();
p.label = form_element["text"].asString(); p.label = form_element["text"].asString();
p.tool_tip = form_element["text"].asString();
p.font = font; p.font = font;
p.rect.height = BTN_HEIGHT; p.rect.height = BTN_HEIGHT;
p.click_callback.function(boost::bind(&LLToastNotifyPanel::onClickButton, userdata)); p.click_callback.function(boost::bind(&LLToastNotifyPanel::onClickButton, userdata));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment