-
-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #663 from OpenHD/consti-dev
Fix sidebar dummy in status
- Loading branch information
Showing
7 changed files
with
79 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import QtQuick 2.15 | ||
import QtQuick.Controls 2.15 | ||
import QtQuick.Layouts 1.12 | ||
import QtGraphicalEffects 1.12 | ||
import QtQuick.Shapes 1.0 | ||
import QtQuick.Controls.Material 2.0 | ||
|
||
import Qt.labs.settings 1.0 | ||
|
||
import OpenHD 1.0 | ||
|
||
import "../elements" | ||
|
||
RowLayout { | ||
property string override_text_left: "TODO" | ||
property string override_text_right: "TODO" | ||
|
||
Text { | ||
width: 150 | ||
text: override_text_left | ||
font.pixelSize: 14 | ||
font.bold: true | ||
font.family: "AvantGarde-Medium" | ||
color: "#ffffff" | ||
smooth: true | ||
} | ||
|
||
Text { | ||
text: override_text_right | ||
font.pixelSize: 14 | ||
font.family: "AvantGarde-Medium" | ||
color: "#ffffff" | ||
smooth: true | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters