This commit is contained in:
Mirco Wittrien 2019-10-22 19:09:24 +02:00
parent feb9eed2a5
commit 74e5df3834
2 changed files with 6 additions and 6 deletions

View File

@ -5540,15 +5540,15 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
}), }),
BDFDB.ReactUtils.createElement("div", { BDFDB.ReactUtils.createElement("div", {
className: BDFDB.disCN.contextmenuhint, className: BDFDB.disCN.contextmenuhint,
style: { style: this.props.hint ? {
width: 42, width: 42,
maxWidth: 42, maxWidth: 42,
marginLeft: 8 marginLeft: 8
}, } : {},
children: BDFDB.ReactUtils.createElement(LibraryComponents.TextScroller, { children: this.props.hint ? BDFDB.ReactUtils.createElement(LibraryComponents.TextScroller, {
speed: 2, speed: 2,
children: this.props.children children: this.props.hint
}) }) : null
}), }),
this.props.children this.props.children
] ]

File diff suppressed because one or more lines are too long