Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,11 @@ protected static Color getColorSuccess(InputOutput io) {
}

protected static Color getDefaultColorBackground() {
Color back = UIManager.getColor("nb.output.backgorund"); //NOI18N
Color back = UIManager.getColor("nb.output.background"); //NOI18N
if (back == null) {
// dprecated

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit : the overall typo count is not going down! 😄

back = UIManager.getColor("nb.output.backgorund"); //NOI18N
}
if (back == null) {
back = UIManager.getColor("TextField.background"); //NOI18N
if (back == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,11 @@ private static Color getDefaultColorStandard() {
}

private static Color getDefaultColorBackground() {
Color back = UIManager.getColor("nb.output.backgorund"); //NOI18N
Color back = UIManager.getColor("nb.output.background"); //NOI18N
if (back == null) {
// dprecated
back = UIManager.getColor("nb.output.backgorund"); //NOI18N
}
if (back == null) {
back = UIManager.getColor("TextField.background"); //NOI18N
if (back == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1950,7 +1950,7 @@ <h3 id="SceneAnimatorMethods">SceneAnimator Methods</h3>
<td>Returns the zoom animator of the scene.
<tr>
<td>getColorAnimator
<td>Returns the color animator which controls backgorund and foreground animation of all widgets in the scene.
<td>Returns the color animator which controls background and foreground animation of all widgets in the scene.
</table>

<p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public enum LinkStyle {
public static final String PROP_COLOR_LINK_IMPORTANT =
"color.link.important"; //NOI18N
public static final String PROP_COLOR_BACKGROUND =
"color.backgorund"; //NOI18N
"color.background"; //NOI18N
public static final String PROP_COLOR_WARNING = "color.warning"; //NOI18N
public static final String PROP_COLOR_FAILURE = "color.failure"; //NOI18N
public static final String PROP_COLOR_SUCCESS = "color.success"; //NOI18N
Expand Down Expand Up @@ -668,7 +668,11 @@ static Color getDefaultColorStandard() {
}

static Color getDefaultColorBackground() {
Color back = UIManager.getColor("nb.output.backgorund"); //NOI18N
Color back = UIManager.getColor("nb.output.background"); //NOI18N
if (back == null) {
// dprecated
back = UIManager.getColor("nb.output.backgorund"); //NOI18N
}
if (back == null) {
back = UIManager.getColor("TextField.background"); //NOI18N
if (back == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@ nb.diff.sidebar.changed.color=rgb(30, 75, 112)

# output
nb.output.foreground=@foreground
# deprecated
nb.output.background=#2B2B2B
nb.output.backgorund=#2B2B2B
nb.output.selectionBackground=#214283
nb.output.err.foreground=#FF4040
Expand Down
Loading