mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-29 16:56:39 +01: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
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ def selection_changed(self, has_selection):
|
|||
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…
Reference in a new issue