mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Update trim_image.py
Added a space before image dimensions. Currently there is no space: https://i.imgur.com/2bW41RX.png
This commit is contained in:
parent
d9c9b48c91
commit
78ac342677
@ -76,7 +76,7 @@ class TrimImage(QDialog):
|
||||
self.msg.setVisible(not has_selection)
|
||||
|
||||
def image_changed(self, qimage):
|
||||
self.sz.setText('\xa0' + _('Size:') + '%dx%d' % (qimage.width(), qimage.height()))
|
||||
self.sz.setText('\xa0' + _('Size:') + ' ' + '%dx%d' % (qimage.width(), qimage.height()))
|
||||
|
||||
def cleanup(self):
|
||||
self.canvas.break_cycles()
|
||||
|
Loading…
x
Reference in New Issue
Block a user