Skip to content

Commit 7a77e0b

Browse files
committed
修改Mac下初始化头像BUG
1 parent 36ab742 commit 7a77e0b

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

conf/nbs-conf.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ nbs.client.merkle.root=.merkleroot
44
nbs.client.merkle.add.log.name=.merkle
55
nbs.client.profile.root=profile
66
nbs.client.files.root=nbs
7+
nbs.ui.panel.about.label.ver-value=v2.0.2
78
nbs.client.im.topic.subworld=false
89
nbs.client.heart.monitor.seconds=300
910
nbs.client.im.replay-open=false

conf/nbs.db

0 Bytes
Binary file not shown.

conf/zh-cn.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ nbs.ui.panel.status.default-nickname= NBSChain_9527
3131
#### about
3232
nbs.ui.panel.about.label.version-title=The Next Block chain System
3333
nbs.ui.panel.about.label.ver-name=\u5F53\u524D\u7248\u672C
34-
nbs.ui.panel.about.label.ver-value=v0.2.2
34+
nbs.ui.panel.about.label.ver-value=v2.0.2
3535
nbs.ui.panel.about.html.ver-log=http://nbs.lanbery.cn/nbs/client4j/update.log.html
3636

3737
#### File

src/main/java/io/nbs/client/ui/panels/about/AboutHeaderPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private void initView() {
7272
titleLabel.setText(title);
7373
titleLabel.setFont(FontUtil.getDefaultFont(32));
7474
titleLabel.setForeground(ColorCnst.FONT_ABOUT_TITLE_BLUE);
75-
String verText = AboutMasterPanel.cfgProps.getProperty("nbs.ui.panel.about.label.ver-value","v0.2.2");
75+
String verText = AboutMasterPanel.cfgProps.getProperty("nbs.ui.panel.about.label.ver-value","v2.0.2");
7676
versionLabel.setText(verText);
7777
versionLabel.setFont(FontUtil.getDefaultFont(12));
7878

src/main/java/io/nbs/client/ui/panels/manage/MMSearcherPanel.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ private void initView() {
103103
prevous.setBackground(ColorCnst.SEEARCH_ITEM_GRAY_LIGHT);
104104
tailer.setBackground(ColorCnst.SEEARCH_ITEM_GRAY_LIGHT);
105105
setLayout(new GridBagLayout());
106-
//setLayout(new FlowLayout(FlowLayout.CENTER,10,0));
107-
//add(this.searchTextField);
108-
//add(this.searchBtn);
106+
107+
//
108+
circlePanel.setVisible(false);
109109
this.add(prevous,
110110
new GBC(0,0).setFill(GBC.BOTH).setWeight(1,1).setInsets(15));
111111
this.add(searchTextField,

0 commit comments

Comments
 (0)