1
0
mirror of https://github.com/MidnightCommander/mc synced 2025-01-11 22:09:27 +03:00

(display_bits_box): use tty_display_8bit().

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2019-09-17 13:59:06 +03:00
parent 3daff7838f
commit a2d32c22bb

View File

@ -943,9 +943,9 @@ display_bits_box (void)
mc_global.eight_bit_clean = current_mode < 3;
mc_global.full_eight_bits = current_mode < 2;
#ifndef HAVE_SLANG
meta (stdscr, mc_global.eight_bit_clean);
tty_display_8bit (mc_global.eight_bit_clean);
#else
SLsmg_Display_Eight_Bit = mc_global.full_eight_bits ? 128 : 160;
tty_display_8bit (mc_global.full_eight_bits);
#endif
use_8th_bit_as_meta = !new_meta;
}