mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-30 15:54:32 +08:00
Add space, so content isn't bellow scrollbar
CURA-8979
This commit is contained in:
parent
99f9918db5
commit
b33a5d7b84
@ -110,6 +110,7 @@ Item
|
||||
|
||||
ScrollBar.vertical: UM.ScrollBar
|
||||
{
|
||||
id: scrollBar
|
||||
parent: informationPage
|
||||
anchors
|
||||
{
|
||||
@ -122,7 +123,7 @@ Item
|
||||
clip: true
|
||||
visible: pageSelectorTabRow.currentItem.activeView === "information"
|
||||
|
||||
property real columnWidth: Math.floor(width / 2 - UM.Theme.getSize("narrow_margin").width)
|
||||
property real columnWidth: Math.floor((width - scrollBar.width - UM.Theme.getSize("narrow_margin").width) / 2)
|
||||
property real rowHeight: UM.Theme.getSize("setting_control").height
|
||||
|
||||
Column
|
||||
@ -169,10 +170,10 @@ Item
|
||||
}
|
||||
Cura.TextField
|
||||
{
|
||||
id: displayNameTextField;
|
||||
width: informationPage.columnWidth;
|
||||
text: properties.name;
|
||||
enabled: base.editingEnabled;
|
||||
id: displayNameTextField
|
||||
width: informationPage.columnWidth
|
||||
text: properties.name
|
||||
enabled: base.editingEnabled
|
||||
onEditingFinished: base.updateMaterialDisplayName(properties.name, text)
|
||||
}
|
||||
}
|
||||
@ -480,7 +481,7 @@ Item
|
||||
Cura.ReadOnlyTextArea
|
||||
{
|
||||
text: properties.description
|
||||
width: informationPage.width
|
||||
width: informationPage.width - scrollBar.width
|
||||
height: 0.4 * informationPage.width
|
||||
wrapMode: Text.WordWrap
|
||||
|
||||
@ -499,7 +500,7 @@ Item
|
||||
Cura.ReadOnlyTextArea
|
||||
{
|
||||
text: properties.adhesion_info
|
||||
width: informationPage.width
|
||||
width: informationPage.width - scrollBar.width
|
||||
height: 0.4 * informationPage.width
|
||||
wrapMode: Text.WordWrap
|
||||
readOnly: !base.editingEnabled
|
||||
|
Loading…
x
Reference in New Issue
Block a user