~snwh/sudoku-app/new-icons

« back to all changes in this revision

Viewing changes to components/SudokuDialogButton.qml

  • Committer: dinko.metalac at gmail
  • Date: 2013-07-09 09:54:46 UTC
  • mfrom: (62.2.4 profiles)
  • Revision ID: dinko.metalac@gmail.com-20130709095446-u9smezoot4td0kxd
MergedĀ lp:~fredoust/sudoku-app/profiles

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
SudokuButton {
5
5
    id: dialogButton
6
 
    border.color: defaultBorderColor
 
6
    border.color: sudokuBlocksGrid.defaultBorderColor
7
7
    //border.width: 3
8
 
    textColor: defaultTextColor;
 
8
    textColor: sudokuBlocksGrid.defaultTextColor;
9
9
 
10
10
    signal triggered;
11
11
 
43
43
            animateDialogButton.start();
44
44
        }
45
45
    }
46
 
    buttonColor: buttonMouseArea.pressed ? String(Qt.darker(defaultColor,1.2)):defaultColor
 
46
    buttonColor: buttonMouseArea.pressed ? String(Qt.darker(sudokuBlocksGrid.defaultColor,1.2)):sudokuBlocksGrid.defaultColor
47
47
}