Browse Source

- small ui changes.

- bug fix: mix, windows - unreadable fonts #1051.
cl-refactor
yann300 10 years ago
parent
commit
092312d4af
  1. 7
      mix/qml/Debugger.qml
  2. 6
      mix/qml/DefaultLabel.qml
  3. 7
      mix/qml/DefaultTextField.qml
  4. 8
      mix/qml/Ether.qml
  5. 2
      mix/qml/StateDialog.qml
  6. 10
      mix/qml/TransactionDialog.qml
  7. 14
      mix/qml/WebPreview.qml

7
mix/qml/Debugger.qml

@ -131,7 +131,14 @@ Rectangle {
Layout.fillWidth: true
Layout.minimumHeight: 60
height: 250
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: machineStates.sideMargin
anchors.rightMargin: machineStates.sideMargin
anchors.topMargin: machineStates.sideMargin
}
ScrollView
{
property int sideMargin: 10

6
mix/qml/DefaultLabel.qml

@ -4,12 +4,6 @@ import "."
Label {
text: text
font.family: regularFont.name
font.pointSize: Style.generic.size.titlePointSize
SourceSansProLight
{
id: regularFont
}
}

7
mix/qml/DefaultTextField.qml

@ -3,11 +3,4 @@ import QtQuick.Controls 1.1
TextField {
id: titleField
focus: true
font.family: regularFont.name
SourceSansProRegular
{
id: regularFont;
}
}

8
mix/qml/Ether.qml

@ -49,10 +49,6 @@ RowLayout {
id: etherValueEdit;
}
SourceSansProBold {
id: regularFont;
}
ComboBox
{
id: units
@ -87,15 +83,11 @@ RowLayout {
ListElement { text: "Kwei"; }
ListElement { text: "wei"; }
}
style: ComboBoxStyle {
font: regularFont.name
}
}
Text
{
visible: displayFormattedValue
id: formattedValue
font.family: regularFont.name
}
}

2
mix/qml/StateDialog.qml

@ -12,7 +12,7 @@ Window {
id: modalStateDialog
modality: Qt.ApplicationModal
width: 450
width: 520
height: 480
title: qsTr("Edit State")
visible: false

10
mix/qml/TransactionDialog.qml

@ -10,7 +10,7 @@ import "."
Window {
id: modalTransactionDialog
modality: Qt.ApplicationModal
width: 450
width: 520
height: (paramsModel.count > 0 ? 500 : 300)
visible: false
color: StateDialogStyle.generic.backgroundColor
@ -174,11 +174,6 @@ Window {
anchors.fill: parent
anchors.margins: 10
SourceSansProLight
{
id: lightFont
}
ColumnLayout {
id: dialogContent
anchors.top: parent.top
@ -204,9 +199,6 @@ Window {
onCurrentIndexChanged: {
loadParameters();
}
style: ComboBoxStyle {
font: lightFont.name
}
}
}

14
mix/qml/WebPreview.qml

@ -162,11 +162,6 @@ Item {
spacing: 0
Rectangle
{
SourceSansProLight
{
id: regularFont
}
anchors.leftMargin: 4
color: WebPreviewStyle.general.headerBackgroundColor
Layout.preferredWidth: parent.width
@ -188,9 +183,7 @@ Item {
currentIndex: -1
onCurrentIndexChanged: changePage()
anchors.verticalCenter: parent.verticalCenter
style: ComboBoxStyle {
font: regularFont.name
}
height: 21
}
Action {
@ -205,12 +198,13 @@ Item {
iconSource: "qrc:/qml/img/available_updates.png"
action: buttonReloadAction
anchors.verticalCenter: parent.verticalCenter
width: 26
height: 26
width: 21
height: 21
}
CheckBox {
id: autoReloadOnSave
checked: true
height: 21
anchors.verticalCenter: parent.verticalCenter
style: CheckBoxStyle {
label: DefaultLabel {

Loading…
Cancel
Save