mirror of
https://github.com/curly60e/pyblock.git
synced 2026-08-15 12:50:38 +02:00
Reduce nym size
Reduce nym size when showing channels or peers
This commit is contained in:
parent
58bb6abc9f
commit
bf79082b07
1 changed files with 6 additions and 6 deletions
|
|
@ -196,7 +196,7 @@ def locallistpeersQQ():
|
|||
img_path = open(hash +".png", "rb")
|
||||
img = Image.open(img_path)
|
||||
|
||||
h = 2
|
||||
h = 1
|
||||
w = int((img.width / img.height) * 5)
|
||||
|
||||
img = img.resize((w,h), Image.ANTIALIAS)
|
||||
|
|
@ -206,7 +206,7 @@ def locallistpeersQQ():
|
|||
img_path = open(hash +".png", "rb")
|
||||
img = Image.open(img_path)
|
||||
|
||||
h = 2
|
||||
h = 1
|
||||
w = int((img.width / img.height) * 5)
|
||||
|
||||
img = img.resize((w,h), Image.ANTIALIAS)
|
||||
|
|
@ -420,7 +420,7 @@ def locallistchannels():
|
|||
img_path = open(hash +".png", "rb")
|
||||
img = Image.open(img_path)
|
||||
|
||||
h = 2
|
||||
h = 1
|
||||
w = int((img.width / img.height) * 5)
|
||||
|
||||
img = img.resize((w,h), Image.ANTIALIAS)
|
||||
|
|
@ -430,7 +430,7 @@ def locallistchannels():
|
|||
img_path = open(hash +".png", "rb")
|
||||
img = Image.open(img_path)
|
||||
|
||||
h = 2
|
||||
h = 1
|
||||
w = int((img.width / img.height) * 5)
|
||||
|
||||
img = img.resize((w,h), Image.ANTIALIAS)
|
||||
|
|
@ -1044,7 +1044,7 @@ def channels():
|
|||
img_path = open(hash +".png", "rb")
|
||||
img = Image.open(img_path)
|
||||
|
||||
h = 2
|
||||
h = 1
|
||||
w = int((img.width / img.height) * 5)
|
||||
|
||||
img = img.resize((w,h), Image.ANTIALIAS)
|
||||
|
|
@ -1054,7 +1054,7 @@ def channels():
|
|||
img_path = open(hash +".png", "rb")
|
||||
img = Image.open(img_path)
|
||||
|
||||
h = 2
|
||||
h = 1
|
||||
w = int((img.width / img.height) * 5)
|
||||
|
||||
img = img.resize((w,h), Image.ANTIALIAS)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue