Skip to content

Commit

Permalink
feat: support utf-8
Browse files Browse the repository at this point in the history
  • Loading branch information
zhensherlock committed May 29, 2024
1 parent 3e39f5f commit 87dbc37
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ class GitStatsWindowFactory : ToolWindowFactory {
var (startTime, endTime) = Utils.getThisWeekDateTimeRange()
var defaultMode = "Top-speed"
val table = JBTable().apply {
font = Font("Arial", Font.PLAIN, 14)
tableHeader.font = Font("Arial", Font.BOLD, 14)
font = Font("Microsoft YaHei", Font.PLAIN, 14)
tableHeader.font = Font("Microsoft YaHei", Font.BOLD, 14)
border = BorderFactory.createEmptyBorder(0, 0, 0, 0)
columnSelectionAllowed = false
rowSelectionAllowed = true
Expand Down

0 comments on commit 87dbc37

Please sign in to comment.