зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1637112 - Don't draw border-image segments with zero slice size. r=mstange
Differential Revision: https://phabricator.services.mozilla.com/D75119
This commit is contained in:
Родитель
5e15baf1e4
Коммит
4c56570aa9
|
@ -1355,7 +1355,7 @@ impl NinePatchDescriptor {
|
|||
repeat_vertical: RepeatMode,
|
||||
extra_flags: BrushFlags,
|
||||
) {
|
||||
if uv_rect.uv1.x < uv_rect.uv0.x || uv_rect.uv1.y < uv_rect.uv0.y {
|
||||
if uv_rect.uv1.x <= uv_rect.uv0.x || uv_rect.uv1.y <= uv_rect.uv0.y {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче