diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2022-02-14 09:11:05 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2022-02-14 03:25:19 +0100 |
commit | 58ac3288b5a4a1f1f9b21fed4f4c1ab06dd43db9 (patch) | |
tree | 31963ca46b2b8478e0666c463aa45bcde140bc7f /cui | |
parent | ace0adfd2312211854a61fdc0aa60c1ba9c4d446 (diff) |
cui: show image pixel size below logic size
Change-Id: If919d1fade2ed85aec7437b429a648ca658e2c92
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129885
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/grfpage.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cui/source/tabpages/grfpage.cxx b/cui/source/tabpages/grfpage.cxx index 33bc69b81f49..158e6b2b1e79 100644 --- a/cui/source/tabpages/grfpage.cxx +++ b/cui/source/tabpages/grfpage.cxx @@ -665,6 +665,7 @@ void SvxGrfCropPage::GraphicHasChanged( bool bFound ) } sTemp += " " + CuiResId(RID_CUISTR_PPI).replaceAll("%1", sPPI); } + sTemp += "\n" + OUString::number(m_aOrigPixelSize.Width()) + u"\u00D7" + OUString::number(m_aOrigPixelSize.Height()) + " px"; m_xOrigSizeFT->set_label(sTemp); } |