make Enclosure Parsing more inclusive

This commit is contained in:
HF 2022-02-09 22:09:08 +01:00
parent cad78f5d7b
commit fbc95ba64b
3 changed files with 7 additions and 7 deletions

View File

@ -848,16 +848,18 @@ export function hideAllWindowTypes(
}
export function openChatWindow() {
const width = 350;
const height = 350;
return openWindow(
'CHAT',
'',
false,
true,
{ chatChannel: 1, inputMessage: '' },
window.innerWidth - 350 - 62,
window.innerHeight - 220 - 64,
350,
220,
window.innerWidth - width - 62,
window.innerHeight - height - 64,
width,
height,
);
}

View File

@ -119,8 +119,6 @@ export default class MString {
const chr = this.txt[yEnd];
if (yEnd >= this.txt.length
|| chr === '\n'
|| chr === '['
|| chr === '('
) {
return null;
}

View File

@ -680,7 +680,7 @@ tr:nth-child(even) {
.chatmsg {
font-size: 13px;
user-select: text;
margin: 0;
margin: 5px 0 0 0;
}
.chatmsg:hover {
background-color: #ececec;