private void updateBackgroundColor(Color color) { if (!updatingToolbar.get()) { updateStyleInSelection(StyleInfo.backgroundColor(color)); } }
private void updateFontFamily(String family) { if (!updatingToolbar.get()) { updateStyleInSelection(StyleInfo.fontFamily(family)); } }
private void updateTextColor(Color color) { if (!updatingToolbar.get()) { updateStyleInSelection(StyleInfo.textColor(color)); } }
private void updateFontSize(Integer size) { if (!updatingToolbar.get()) { updateStyleInSelection(StyleInfo.fontSize(size)); } }