mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-09-02 09:06:03 +00:00
Increase padding for elided text in combo.
Signed-off-by: Adam Treat <treat.adam@gmail.com>
This commit is contained in:
@@ -395,7 +395,13 @@ Window {
|
|||||||
contentItem: Text {
|
contentItem: Text {
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
leftPadding: 10
|
leftPadding: 10
|
||||||
rightPadding: 20
|
rightPadding: {
|
||||||
|
if (ejectButton.visible && reloadButton)
|
||||||
|
return 105;
|
||||||
|
if (reloadButton.visible)
|
||||||
|
return 65
|
||||||
|
return 25
|
||||||
|
}
|
||||||
text: {
|
text: {
|
||||||
if (currentChat.modelLoadingError !== "")
|
if (currentChat.modelLoadingError !== "")
|
||||||
return qsTr("Model loading error...")
|
return qsTr("Model loading error...")
|
||||||
|
Reference in New Issue
Block a user