Skip to content

Commit

Permalink
debug logs updated
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillp committed Oct 19, 2024
1 parent e68783d commit cd9052d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ static EditorColorScheme fromJs(JSObject t) {
if (JsHelper.jsIf(v)) {
JsHelper.consoleInfo("import color " + i + ' ', v);
var c = new Color(v.stringValue());
JsHelper.consoleInfo("color = " + c);
theme.modify(i, c);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ public ScrollView applyTheme(ScrollView view) {

@Override
protected void changeFont() {
System.out.println("FileTreeView.changeFont");
super.changeFont();
if (mergeButtons != null)
applyMergeButtonsFont();
Expand All @@ -90,8 +89,7 @@ private void applyMergeButtonsFont() {
mergeButtons.setFont(clrContext.lineHeight, !isLeft, clrContext.font);
mbWidth = mergeButtons.measure(clrContext.font, uiContext.graphics.mCanvas, dpr);
leftGapDp = isLeft ? leftGapDpDefault : toDp(mbWidth);

System.out.println("mergeButtons.measure = " + mbWidth);
// System.out.println("mergeButtons.measure = " + mbWidth);
}

@Override
Expand Down

0 comments on commit cd9052d

Please sign in to comment.