Mercurial > vim
annotate pixmaps/tb_blank.xpm @ 24275:6062e10a7e72 v8.2.2679
patch 8.2.2679: status line missing for non-current window with winbar
Commit: https://github.com/vim/vim/commit/ae0f151ddf76dcbb233cff02282deb4f98a355ec
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Mar 30 22:12:12 2021 +0200
patch 8.2.2679: status line missing for non-current window with winbar
Problem: Winbar drawn over status line for non-current window with winbar
if frame is zero height. (Leonid V. Fedorenchik)
Solution: Do not draw the window if the frame height is zero. (closes #8037)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 30 Mar 2021 22:15:03 +0200 |
parents | 3fc0f57ecb91 |
children |
rev | line source |
---|---|
7 | 1 /* XPM */ |
2 static char * tb_blank_xpm[] = { | |
3 /* width height ncolors cpp [x_hot y_hot] */ | |
4 "18 18 4 1 0 0", | |
5 /* colors */ | |
6 " s iconColor1 m black c #000000", | |
7 ". s none m none c none", | |
8 "X s topShadowColor m none c #DCDEE5", | |
9 "o s bottomShadowColor m black c #5D6069", | |
10 /* pixels */ | |
11 " .", | |
12 " XXXXXXXXXXXXXXX .", | |
13 " X.............. o", | |
14 " X.............. o", | |
15 " X.............. o", | |
16 " X.............. o", | |
17 " X.............. o", | |
18 " X.............. o", | |
19 " X.............. o", | |
20 " X.............. o", | |
21 " X.............. o", | |
22 " X.............. o", | |
23 " X.............. o", | |
24 " X.............. o", | |
25 " X.............. o", | |
26 " X.............. o", | |
27 " o", | |
28 "..oooooooooooooooo"}; |