From 79e2e0a28d3a81c2c4f7155dabadd4cd30b82b5e Mon Sep 17 00:00:00 2001 From: byloveletter Date: Fri, 4 Aug 2017 11:00:46 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A0=95=EB=B3=B4=20=EB=8B=A4=EC=9D=B4?= =?UTF-8?q?=EC=96=BC=EB=A1=9C=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Label wordwrap 옵션 적용 --- app/gui/oven_control/configinfodlg.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/gui/oven_control/configinfodlg.cpp b/app/gui/oven_control/configinfodlg.cpp index 8cfd183..5a97262 100644 --- a/app/gui/oven_control/configinfodlg.cpp +++ b/app/gui/oven_control/configinfodlg.cpp @@ -150,6 +150,7 @@ void ConfigInfoDlg::loadHotlineChefInfo(){ label ->setText(tr(hotline_chef_item_name[i]).append(":")); ui->gridLayout_info->addWidget(label,i,0); label = new QLabel(this); + label->setWordWrap(true); label->setText(strTemp); ui->gridLayout_info->addWidget(label,i,1); } @@ -172,6 +173,7 @@ void ConfigInfoDlg::loadHotlineServiceInfo(){ label ->setText(tr(hotline_service_item_name[i]).append(":")); ui->gridLayout_info->addWidget(label,i,0); label = new QLabel(this); + label->setWordWrap(true); label->setText(strTemp); ui->gridLayout_info->addWidget(label,i,1); } -- 2.1.4