Fix message times being on a separate line
This commit is contained in:
parent
ebf6d36c01
commit
7f29716a61
1
TODO.md
1
TODO.md
|
@ -13,7 +13,6 @@
|
||||||
- When qml syntax highlighting supports ES6 string interpolation, use that
|
- When qml syntax highlighting supports ES6 string interpolation, use that
|
||||||
|
|
||||||
- Fixes
|
- Fixes
|
||||||
- Time on their own lines
|
|
||||||
- When selecting text and scrolling up, selection stops working after a while
|
- When selecting text and scrolling up, selection stops working after a while
|
||||||
- Ensure all the text that should be copied is copied
|
- Ensure all the text that should be copied is copied
|
||||||
- Mouse wheel scrolling speed in event list
|
- Mouse wheel scrolling speed in event list
|
||||||
|
|
|
@ -112,7 +112,9 @@ Row {
|
||||||
text: theme.chat.message.styleInclude +
|
text: theme.chat.message.styleInclude +
|
||||||
eventContent.eventText +
|
eventContent.eventText +
|
||||||
// time
|
// time
|
||||||
" " +
|
// for some reason, if there's only one space,
|
||||||
|
// times will be on their own lines most of the time.
|
||||||
|
" " +
|
||||||
"<font size=" + theme.fontSize.small +
|
"<font size=" + theme.fontSize.small +
|
||||||
"px color=" + theme.chat.message.date + '>' +
|
"px color=" + theme.chat.message.date + '>' +
|
||||||
eventTime +
|
eventTime +
|
||||||
|
|
Loading…
Reference in New Issue
Block a user