diff --git a/src/exm-comment-tile.blp b/src/exm-comment-tile.blp index 1bb41d79..437a49d4 100644 --- a/src/exm-comment-tile.blp +++ b/src/exm-comment-tile.blp @@ -18,7 +18,6 @@ template $ExmCommentTile : Gtk.Widget { Gtk.Label author_badge { styles ["author-badge"] label: _("Author"); - visible: false; } $ExmRating rating { diff --git a/src/exm-comment-tile.c b/src/exm-comment-tile.c index d0786462..9c561b0a 100644 --- a/src/exm-comment-tile.c +++ b/src/exm-comment-tile.c @@ -98,7 +98,7 @@ exm_comment_tile_constructed (GObject *object) "rating", &score, NULL); - if (score >= 0 && score <= 5) + if (score >= 1 && score <= 5) { g_object_set (self->rating, "rating", score, NULL); gtk_widget_set_visible (GTK_WIDGET (self->rating), TRUE);