mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
LeftPanel: don't change font size if balance is hidden
This commit is contained in:
parent
ff6ce6294b
commit
ed0bccc7e2
1 changed files with 6 additions and 0 deletions
|
@ -226,6 +226,9 @@ Rectangle {
|
|||
text: "N/A"
|
||||
// dynamically adjust text size
|
||||
font.pixelSize: {
|
||||
if (persistentSettings.hideBalance) {
|
||||
return 20;
|
||||
}
|
||||
var digits = text.split('.')[0].length
|
||||
var defaultSize = 22;
|
||||
if(digits > 2) {
|
||||
|
@ -265,6 +268,9 @@ Rectangle {
|
|||
text: "N/A"
|
||||
// dynamically adjust text size
|
||||
font.pixelSize: {
|
||||
if (persistentSettings.hideBalance) {
|
||||
return 20;
|
||||
}
|
||||
var digits = text.split('.')[0].length
|
||||
var defaultSize = 20;
|
||||
if(digits > 3) {
|
||||
|
|
Loading…
Reference in a new issue