oops forgot to compile on windows :(

This commit is contained in:
Adam D. Ruppe 2020-02-09 07:37:01 -05:00
parent bfa448c131
commit 1bc81effb2
1 changed files with 4 additions and 2 deletions

View File

@ -924,8 +924,10 @@ struct Terminal {
}
void demandUserAttention() {
if(!terminalInFamily("linux"))
writeStringRaw("\033]5001;1\007");
version(Posix) {
if(!terminalInFamily("linux"))
writeStringRaw("\033]5001;1\007");
}
}
void requestCopyToClipboard(string text) {