From 754c0a90f244ec6d6173c50c62390cca24cd461f Mon Sep 17 00:00:00 2001 From: defnax <9952056+defnax@users.noreply.github.com> Date: Tue, 23 Jun 2026 16:42:49 +0200 Subject: [PATCH] fixed to use font metrix --- retroshare-gui/src/gui/gxs/GxsCommentDialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/retroshare-gui/src/gui/gxs/GxsCommentDialog.cpp b/retroshare-gui/src/gui/gxs/GxsCommentDialog.cpp index fd1d7c71c..12707bb09 100644 --- a/retroshare-gui/src/gui/gxs/GxsCommentDialog.cpp +++ b/retroshare-gui/src/gui/gxs/GxsCommentDialog.cpp @@ -74,6 +74,8 @@ void GxsCommentDialog::init(const RsGxsId& default_author) int S = QFontMetricsF(font()).height() ; ui->sortBox->setIconSize(QSize(S*1.5,S*1.5)); + ui->commentButton->setIconSize(QSize(S*1.5,S*1.5)); + ui->viewModeButton->setIconSize(QSize(S*1.5,S*1.5)); } void GxsCommentDialog::setGxsService(RsGxsCommentService *comment_service)