projects
/
platform
/
core
/
csapi
/
tizenfx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3763441
)
[NUI] Fix fitting mode issue of ImageView (#1977)
author
Xianbing Teng
<xb.teng@samsung.com>
Wed, 23 Sep 2020 02:49:20 +0000
(10:49 +0800)
committer
GitHub
<noreply@github.com>
Wed, 23 Sep 2020 02:49:20 +0000
(11:49 +0900)
Co-authored-by: Xianbing Teng <reformed_beginner@outlook.com>
Co-authored-by: dongsug-song <35130733+dongsug-song@users.noreply.github.com>
src/Tizen.NUI/src/public/BaseComponents/ImageView.cs
patch
|
blob
|
history
diff --git
a/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs
b/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs
index a4049b694f0a8f4c8674e13829982c73e95ce8ef..1bb96235cce90b6d8fbe5d17ec692dde7f8aed13 100644
(file)
--- a/
src/Tizen.NUI/src/public/BaseComponents/ImageView.cs
+++ b/
src/Tizen.NUI/src/public/BaseComponents/ImageView.cs
@@
-828,7
+828,7
@@
namespace Tizen.NUI.BaseComponents
case VisualFittingModeType.FitHeight:
return FittingModeType.FitHeight;
case VisualFittingModeType.FitWidth:
- return FittingModeType.Fit
Height
;
+ return FittingModeType.Fit
Width
;
default:
return FittingModeType.ShrinkToFit;
}