comparison src/gui.c @ 19997:3d1de9093c01 v8.2.0554

patch 8.2.0554: the GUI doesn't set t_Co Commit: https://github.com/vim/vim/commit/acc770a10f65107131473ea2ab4ae5d429dfe172 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 12 15:11:06 2020 +0200 patch 8.2.0554: the GUI doesn't set t_Co Problem: The GUI doesn't set t_Co. Solution: In the GUI set t_Co to 256 * 256 * 256. (closes https://github.com/vim/vim/issues/5903)
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Apr 2020 15:15:04 +0200
parents 435726a03481
children 2c23053c654a
comparison
equal deleted inserted replaced
19996:f486b806468f 19997:3d1de9093c01
510 /* 510 /*
511 * Reset 'paste'. It's useful in the terminal, but not in the GUI. It 511 * Reset 'paste'. It's useful in the terminal, but not in the GUI. It
512 * breaks the Paste toolbar button. 512 * breaks the Paste toolbar button.
513 */ 513 */
514 set_option_value((char_u *)"paste", 0L, NULL, 0); 514 set_option_value((char_u *)"paste", 0L, NULL, 0);
515
516 // Set t_Co to the number of colors: RGB.
517 set_color_count(256 * 256 * 256);
515 518
516 /* 519 /*
517 * Set up system-wide default menus. 520 * Set up system-wide default menus.
518 */ 521 */
519 #if defined(SYS_MENU_FILE) && defined(FEAT_MENU) 522 #if defined(SYS_MENU_FILE) && defined(FEAT_MENU)