Skip to content
Snippets Groups Projects
Commit f7d5914f authored by dxtwjb's avatar dxtwjb
Browse files

Fixed probem with size of luna widget window

Borrowed from gealach by koffeinfriedhof <koffeinfriedhof@gmail.com>.
Replaces the previously fixed size.
parent d9793964
No related branches found
No related tags found
No related merge requests found
version 2.1-beta3 (2017-07-02)
- get localisation working, added missing translations to fr locale.
- added russian translation (it's not very good)
- LunaWidget stretches to fit, not fixed size anymore
version 2.1-beta2 (2017-06-29)
- pick lunar image from a list
- current image shown with callibration grid on config page (Tycho & Copernicus marked)
......
......@@ -119,10 +119,3 @@ Since the average lunation duration is used, this bug will only occasionaly
appear, if it appears at all. This can be solved by setting the variable
lunationDuration to a higher value (with the negative impact that the startup
of the plasmoid may be slower).
Known limitations
-----------------
- The "Long" date format does not display properly if a shorter date format
has already been displayed - the dialog does not change width after it
has been displayed. Restart sorts it out.
......@@ -20,6 +20,7 @@
*/
import QtQuick 2.1
import QtQuick.Layouts 1.2 as QtLayouts
import org.kde.plasma.components 2.0 as PlasmaComponents
import org.kde.plasma.plasmoid 2.0
......@@ -36,8 +37,8 @@ Item {
property var dateFormatQt: 0
property string dateFormatString: "hh"
width: labelButtonColumn.width + 20
height: labelButtonColumn.height + 20
QtLayouts.Layout.minimumWidth: labelButtonColumn.width
QtLayouts.Layout.minimumHeight: labelButtonColumn.height
Component.onCompleted: {
setDateFormat();
......@@ -101,9 +102,7 @@ Item {
Column {
id: labelButtonColumn
anchors.top: lunaWidget.top
anchors.topMargin: 10
anchors.horizontalCenter: lunaWidget.horizontalCenter
anchors.centerIn: parent
spacing: 10
......
......@@ -108,21 +108,8 @@ Item {
Plasmoid.fullRepresentation: Item {
id: full
property alias lw_width: lunaWidget.width
property alias lw_height: lunaWidget.height
/* I cannot figure out ANY way to change the size of this
* object AFTER it has been created. The lw_width value
* DOES get changed, it just has no effect on setting this
* width value.
*
* I would settle for making this a type that adjusts its
* size to enclose its content - and as far as I can see,
* it can't do it either. The size it appears at is the
* size it keeps.
*/
width: 300 //lw_width + 20
height: lw_height + 20
QtLayouts.Layout.preferredWidth: lunaWidget.QtLayouts.Layout.minimumWidth
QtLayouts.Layout.preferredHeight: lunaWidget.QtLayouts.Layout.minimumHeight
property int dateFormat: main.dateFormat
property string dateFormatString: main.dateFormatString
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment