Skip to content

Commit

Permalink
Hopefully the last AppImage fix
Browse files Browse the repository at this point in the history
  • Loading branch information
geigi committed Nov 29, 2017
1 parent b5b51b7 commit ea9f4c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cozy/book_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def __init__(self, b, ui):
title_label.props.max_width_chars = 30
title_label.props.justify = Gtk.Justification.CENTER

author_label = Gtk.Label((self.book.author[:MAX_BOOK_LENGTH] + '...') if len(self.book.author) > MAX_BOOK_LENGTH else self.book.author)
author_label = Gtk.Label.new((self.book.author[:MAX_BOOK_LENGTH] + '...') if len(self.book.author) > MAX_BOOK_LENGTH else self.book.author)
author_label.set_xalign(0.5)
author_label.set_line_wrap(Pango.WrapMode.WORD_CHAR)
author_label.props.max_width_chars = 30
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('cozy',
version: '0.4.2',
version: '0.4.2d',
meson_version: '>= 0.40.0')

project_name = 'cozy'
Expand Down

0 comments on commit ea9f4c5

Please sign in to comment.