diff options
Diffstat (limited to 'indra/newview/lloutputmonitorctrl.h')
-rw-r--r-- | indra/newview/lloutputmonitorctrl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/lloutputmonitorctrl.h b/indra/newview/lloutputmonitorctrl.h index d5ab8e75ce..881ad0f010 100644 --- a/indra/newview/lloutputmonitorctrl.h +++ b/indra/newview/lloutputmonitorctrl.h @@ -49,14 +49,18 @@ class LLOutputMonitorCtrl public: struct Params : public LLInitParam::Block<Params, LLView::Params> { + Optional<bool> draw_border; + Params() { + draw_border = true; name = "output_monitor"; follows.flags(FOLLOWS_LEFT|FOLLOWS_TOP); mouse_opaque = false; - } + }; }; protected: + bool mBorder; LLOutputMonitorCtrl(const Params&); friend class LLUICtrlFactory; |