Skip to content

Commit

Permalink
Merge pull request #468 from Grafieks-Analytics/Ravi
Browse files Browse the repository at this point in the history
popup fixed
  • Loading branch information
chilarai authored Apr 15, 2022
2 parents 4064ed5 + 9cb1f4f commit f8d109a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Source/Charts
12 changes: 8 additions & 4 deletions Source/MainSubComponents/ConfirmPublishDS.qml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,17 @@ Popup {
height: 40
width: parent.width - 2
anchors.top: parent.top
anchors.left: parent.left
// anchors.left: parent.left
anchors.topMargin: 1
anchors.leftMargin: 1
anchors.horizontalCenter: confirmPublishDs.horizontalCenter

Text{
text: "Confirm Datasource Overwrite"
anchors.verticalCenter: parent.verticalCenter
anchors.left : parent.left
// anchors.left : parent.left
anchors.leftMargin: 10
anchors.horizontalCenter: confirmPublishDs.horizontalCenter
}
Image {
id: close_icn
Expand All @@ -69,8 +71,9 @@ Popup {
id: datasourceErrorMsg
anchors.top: header_popup.bottom
anchors.topMargin: 30
anchors.left: parent.left
// anchors.left: parent.left
anchors.leftMargin: 30
anchors.horizontalCenter: confirmPublishDs.horizontalCenter

Rectangle{

Expand All @@ -82,9 +85,10 @@ Popup {
Text{
id : dsNameLabel
text: "Datasource name already exists. Confirm to publish and overwrite"
anchors.left: parent.left
// anchors.left: parent.left
anchors.rightMargin: 10
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: confirmPublishDs.horizontalCenter
}
}

Expand Down
17 changes: 11 additions & 6 deletions Source/MainSubComponents/SessionExpired.qml
Original file line number Diff line number Diff line change
Expand Up @@ -68,22 +68,26 @@ Popup {
id: datasourceErrorMsg
anchors.top: header_popup.bottom
anchors.topMargin: 30
anchors.left: parent.left
anchors.leftMargin: 30
// anchors.left: parent.left
// anchors.leftMargin: 30
// anchors.horizontalCenter: parent.horizontalCenter

Rectangle{

id: label1
width:label_col
width:sessionExpiredPopup.width
height: 40
anchors.leftMargin: 30
// anchors.leftMargin: 30
anchors.horizontalCenter: sessionExpiredPopup.horizontalCenter


Text{
id : dsNameLabel
text: "Your current session has expired. Sign in again"
anchors.left: parent.left
// anchors.left: parent.left
anchors.rightMargin: 10
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
}
}

Expand All @@ -98,7 +102,8 @@ Popup {
id: sessionErrorHandlingButtons
anchors.top: datasourceErrorMsg.bottom
anchors.topMargin: 30
anchors.left: parent.left
// anchors.left: parent.left
anchors.horizontalCenter: parent.horizontalCenter
anchors.leftMargin: 30

Button{
Expand Down

0 comments on commit f8d109a

Please sign in to comment.