mirror of https://github.com/procxx/kepka.git
Fixed height of thumb in EditCaptionBox when media changes to photo.
This commit is contained in:
parent
cf8a06302f
commit
5e233dab47
|
@ -559,6 +559,7 @@ confirmCaptionArea: InputField(defaultInputField) {
|
||||||
}
|
}
|
||||||
confirmBg: windowBgOver;
|
confirmBg: windowBgOver;
|
||||||
confirmMaxHeight: 245px;
|
confirmMaxHeight: 245px;
|
||||||
|
confirmMaxHeightSkip: 25px;
|
||||||
confirmCompressedSkip: 10px;
|
confirmCompressedSkip: 10px;
|
||||||
|
|
||||||
supportInfoField: InputField(defaultInputField) {
|
supportInfoField: InputField(defaultInputField) {
|
||||||
|
|
|
@ -440,13 +440,16 @@ void EditCaptionBox::updateEditPreview() {
|
||||||
_doc = true;
|
_doc = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
_wayWrap->toggle(_photo && !_isAlbum, anim::type::instant);
|
const auto showCheckbox = _photo && !_isAlbum;
|
||||||
|
_wayWrap->toggle(showCheckbox, anim::type::instant);
|
||||||
|
|
||||||
if (!_doc) {
|
if (!_doc) {
|
||||||
_thumb = App::pixmapFromImageInPlace(
|
_thumb = App::pixmapFromImageInPlace(
|
||||||
file->preview.scaled(
|
file->preview.scaled(
|
||||||
st::sendMediaPreviewSize * cIntRetinaFactor(),
|
st::sendMediaPreviewSize * cIntRetinaFactor(),
|
||||||
st::confirmMaxHeight * cIntRetinaFactor(),
|
(st::confirmMaxHeight - (showCheckbox
|
||||||
|
? st::confirmMaxHeightSkip
|
||||||
|
: 0)) * cIntRetinaFactor(),
|
||||||
Qt::KeepAspectRatio));
|
Qt::KeepAspectRatio));
|
||||||
_thumbw = _thumb.width() / cIntRetinaFactor();
|
_thumbw = _thumb.width() / cIntRetinaFactor();
|
||||||
_thumbh = _thumb.height() / cIntRetinaFactor();
|
_thumbh = _thumb.height() / cIntRetinaFactor();
|
||||||
|
|
Loading…
Reference in New Issue