Skip to content
This repository was archived by the owner on Mar 26, 2019. It is now read-only.

Commit f236920

Browse files
committed
更新bug列表
1 parent 4ea888d commit f236920

File tree

3 files changed

+43
-23
lines changed

3 files changed

+43
-23
lines changed

.idea/workspace.xml

Lines changed: 40 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
#### 已知 Bug
3838

39-
- [ ] 嵌入模式下, 跟打状态更新异常.
40-
- [ ] 使用多多输入法时, 跟打状态更新异常.(小狼毫没问题)
39+
- [ ] 嵌入模式下, 跟打状态更新异常.(多多输入法在非嵌入模式下也会嵌入一个空格, 所以也是同一个bug)
40+
- 需要找到一个检测字符是否已经上屏的方法, 只在已经上屏时, 才调用 updateText() 方法.
4141
- [ ] 只有从跟打框的尾部输入时, 跟打状态才能正常更新.
4242
- [ ] 窗口组件的高度不能自适应.(宽度是自适应的)

src/main/java/me/ryan/controller/TextController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ private void updateText() {
138138
var inputChar = inputText[i];
139139
var textShouldBe = (Text) textList.get(i);
140140

141-
logger.info("inputText_{}: {}, textShouldBe: {}", i, inputChar, textShouldBe.getText());
141+
logger.info("inputText_{}: '{}', textShouldBe: {}", i, inputChar, textShouldBe.getText());
142142

143143
if (textShouldBe.getText().equals(inputChar)) {
144144
textShouldBe.setOpacity(0.5); // 敲对了

0 commit comments

Comments
 (0)