Minor fixes

This commit is contained in:
Oscar Alvarez 2020-12-28 22:59:14 -05:00
parent 200ad7ed20
commit e1eede27c6
4 changed files with 11 additions and 5 deletions

View File

@ -90,7 +90,6 @@ class CustomButton(QPushButton):
label_custom_button.setObjectName('label_custom_button')
rows.append(label_custom_button)
print('XXXXX', len(rows))
if len(rows) == 1:
pass
elif len(rows) > 1:

View File

@ -23,8 +23,10 @@
#label_title {
font : 12pt;
min-height : 32px;
width: 120px;
color: rgb(70, 70, 70);
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
#label_custom_button {
@ -37,6 +39,7 @@
margin-right: auto;
color: rgb(70, 70, 70);
text-align: center;
width: 100%;
}
#label_icon {
@ -90,7 +93,8 @@
color: rgb(80, 80, 80);
background-color: white;
max-height: 80px;
max-width : 130px;
/* max-width : 130px; */
width: 100%;
border-width: 0px;
text-align: center;
}

View File

@ -34,8 +34,10 @@
#label_title {
font : 8pt;
min-height : 32px;
width: 120px;
color: rgb(102, 102, 102);
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
#label_custom_button {
@ -48,6 +50,7 @@
margin-right: auto;
color: rgb(70, 70, 70);
text-align: center;
width: 100%;
}
#label_icon {

View File

@ -287,7 +287,7 @@ class MainWindow(FrontWindow):
id='button_start',
size=self.screen_size,
icon=get_icon('start_front'),
title=self.tr('INICIO'),
title=self.tr('START'),
method='see_start_front',
name_style='mini_button',
)