mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-10 06:02:09 +00:00
GP-0 fixing accessibility test after cursor blinking change
This commit is contained in:
parent
bd41b85f02
commit
6c61390185
@ -401,7 +401,8 @@ public class FieldPanel extends JPanel
|
||||
}
|
||||
|
||||
private void initializeCursorBlinking() {
|
||||
boolean blinkingCursors = ThemeManager.getInstance().isBlinkingCursors();
|
||||
ThemeManager themeManager = ThemeManager.getInstance();
|
||||
boolean blinkingCursors = themeManager != null ? themeManager.isBlinkingCursors() : true;
|
||||
setBlinkCursor(blinkingCursors);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user