Skip to content

Commit ea2c592

Browse files
committed
Changed icons
1 parent 70adbd9 commit ea2c592

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

PlsqlDeveloperUtPlsqlPlugin/PlsqlDeveloperUtPlsqlPlugin/RealTimeTestResultWindow.Designer.cs

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PlsqlDeveloperUtPlsqlPlugin/PlsqlDeveloperUtPlsqlPlugin/RealTimeTestResultWindow.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ private void UpdateTestResult(@event @event)
133133
else if (counter.failure > 0)
134134
{
135135
testResult.Result = "Failure";
136-
testResult.Icon = IconChar.ExclamationCircle.ToBitmap(Color.DarkOrange, IconSize);
136+
testResult.Icon = IconChar.TimesCircle.ToBitmap(IconFont.Solid, IconSize, Color.Orange);
137137
}
138138
else if (counter.error > 0)
139139
{
@@ -143,7 +143,7 @@ private void UpdateTestResult(@event @event)
143143
else if (counter.warning > 0)
144144
{
145145
testResult.Result = "Warning";
146-
testResult.Icon = IconChar.ExclamationCircle.ToBitmap(Color.Orange, IconSize);
146+
testResult.Icon = IconChar.ExclamationTriangle.ToBitmap(Color.Orange, IconSize);
147147
}
148148

149149
if (@event.test.errorStack != null)

0 commit comments

Comments
 (0)