Commit 79e2e0a28d3a81c2c4f7155dabadd4cd30b82b5e

Authored by 고영탁
1 parent a6492fbecf
Exists in master and in 2 other branches fhd, fhd-demo

정보 다이얼로그 수정

 - Label wordwrap 옵션 적용
Showing 1 changed file with 2 additions and 0 deletions   Show diff stats
app/gui/oven_control/configinfodlg.cpp
@@ -150,6 +150,7 @@ void ConfigInfoDlg::loadHotlineChefInfo(){ @@ -150,6 +150,7 @@ void ConfigInfoDlg::loadHotlineChefInfo(){
150 label ->setText(tr(hotline_chef_item_name[i]).append(":")); 150 label ->setText(tr(hotline_chef_item_name[i]).append(":"));
151 ui->gridLayout_info->addWidget(label,i,0); 151 ui->gridLayout_info->addWidget(label,i,0);
152 label = new QLabel(this); 152 label = new QLabel(this);
  153 + label->setWordWrap(true);
153 label->setText(strTemp); 154 label->setText(strTemp);
154 ui->gridLayout_info->addWidget(label,i,1); 155 ui->gridLayout_info->addWidget(label,i,1);
155 } 156 }
@@ -172,6 +173,7 @@ void ConfigInfoDlg::loadHotlineServiceInfo(){ @@ -172,6 +173,7 @@ void ConfigInfoDlg::loadHotlineServiceInfo(){
172 label ->setText(tr(hotline_service_item_name[i]).append(":")); 173 label ->setText(tr(hotline_service_item_name[i]).append(":"));
173 ui->gridLayout_info->addWidget(label,i,0); 174 ui->gridLayout_info->addWidget(label,i,0);
174 label = new QLabel(this); 175 label = new QLabel(this);
  176 + label->setWordWrap(true);
175 label->setText(strTemp); 177 label->setText(strTemp);
176 ui->gridLayout_info->addWidget(label,i,1); 178 ui->gridLayout_info->addWidget(label,i,1);
177 } 179 }