Compare commits
2 commits
dd18e65f7f
...
0c98425463
Author | SHA1 | Date | |
---|---|---|---|
0c98425463 | |||
47ab37bd28 |
Before Width: | Height: | Size: 194 B After Width: | Height: | Size: 197 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 174 B |
Before Width: | Height: | Size: 193 B After Width: | Height: | Size: 158 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 153 B |
Before Width: | Height: | Size: 155 B After Width: | Height: | Size: 155 B |
Before Width: | Height: | Size: 188 B After Width: | Height: | Size: 188 B |
Before Width: | Height: | Size: 175 B After Width: | Height: | Size: 172 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 182 B |
Before Width: | Height: | Size: 162 B After Width: | Height: | Size: 163 B |
Before Width: | Height: | Size: 223 B After Width: | Height: | Size: 221 B |
Before Width: | Height: | Size: 300 B After Width: | Height: | Size: 301 B |
Before Width: | Height: | Size: 168 B After Width: | Height: | Size: 168 B |
Before Width: | Height: | Size: 168 B After Width: | Height: | Size: 169 B |
Before Width: | Height: | Size: 111 B After Width: | Height: | Size: 111 B |
Before Width: | Height: | Size: 110 B After Width: | Height: | Size: 110 B |
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 124 B |
Before Width: | Height: | Size: 124 B After Width: | Height: | Size: 125 B |
|
@ -183,7 +183,14 @@ pub fn texture_option_button<T>(
|
|||
width: tex_size + border * 2.,
|
||||
height: tex_size + border * 2.,
|
||||
};
|
||||
d.draw_rectangle_rec(bounds, widget_bg(&option == current));
|
||||
d.draw_rectangle_rec(
|
||||
bounds,
|
||||
if &option == current {
|
||||
BG_WIDGET_ACTIVE
|
||||
} else {
|
||||
gray(16)
|
||||
},
|
||||
);
|
||||
d.draw_texture_ex(
|
||||
texture,
|
||||
pos + Vector2::new(border, border),
|
||||
|
|