Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
UltimateZoneBuilder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
STJr
UltimateZoneBuilder
Commits
ed6e5985
Commit
ed6e5985
authored
8 years ago
by
ZZYZX
Browse files
Options
Downloads
Patches
Plain Diff
Fixed: item selection gradient in classic views was severely off.
parent
46cc1df0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Source/Core/Controls/ImageBrowserItem.cs
+9
-10
9 additions, 10 deletions
Source/Core/Controls/ImageBrowserItem.cs
with
9 additions
and
10 deletions
Source/Core/Controls/ImageBrowserItem.cs
+
9
−
10
View file @
ed6e5985
...
...
@@ -105,11 +105,9 @@ namespace CodeImp.DoomBuilder.Controls
}
else
{
Color
topselected
=
Color
.
FromArgb
(
255
,
37
,
67
,
151
);
Color
bottomselected
=
Color
.
FromArgb
(
255
,
1
,
20
,
83
);
// FIXME - ano - okay this is a bit off
selectedbgbrush
=
new
LinearGradientBrush
(
new
Point
(
x
-
2
,
y
-
3
),
new
Point
(
x
-
2
,
y
+
h
+
4
+
SystemFonts
.
MessageBoxFont
.
Height
),
topselected
,
bottomselected
);
((
LinearGradientBrush
)
selectedbgbrush
).
WrapMode
=
WrapMode
.
Tile
;
// [ZZ] this is not "a bit" off. this is completely off. especially when items have different sizes.
// moved to item drawing.
}
frame_used
=
Pens
.
Orange
;
...
...
@@ -131,11 +129,7 @@ namespace CodeImp.DoomBuilder.Controls
}
else
{
Color
topselected
=
Color
.
FromArgb
(
255
,
37
,
67
,
151
);
Color
bottomselected
=
Color
.
FromArgb
(
255
,
1
,
20
,
83
);
selectedbgbrush
=
new
LinearGradientBrush
(
new
Point
(
x
-
2
,
y
-
3
),
new
Point
(
x
-
2
,
y
+
h
+
4
+
SystemFonts
.
MessageBoxFont
.
Height
),
topselected
,
bottomselected
);
((
LinearGradientBrush
)
selectedbgbrush
).
WrapMode
=
WrapMode
.
Tile
;
selectedbgbrush
=
null
;
}
frame_used
=
SystemPens
.
HotTrack
;
...
...
@@ -195,6 +189,11 @@ namespace CodeImp.DoomBuilder.Controls
}
else
{
// calculate selectedbgbrush here. once.
Color
topselected
=
Color
.
FromArgb
(
255
,
37
,
67
,
151
);
Color
bottomselected
=
Color
.
FromArgb
(
255
,
1
,
20
,
83
);
selectedbgbrush
=
new
LinearGradientBrush
(
new
Point
(
x
-
2
,
y
-
3
),
new
Point
(
x
-
2
,
y
+
h
+
fontH
),
topselected
,
bottomselected
);
g
.
FillRectangle
(
selectedbgbrush
,
x
-
13
,
y
-
2
,
w
+
26
,
h
+
fontH
);
}
}
...
...
@@ -217,7 +216,7 @@ namespace CodeImp.DoomBuilder.Controls
}
// Image name
float
textureNameX
=
classicview
?
(
x
+
(
float
)
w
/
2
-
g
.
MeasureString
(
TextureName
,
SystemFonts
.
MessageBoxFont
).
Width
/
2
)
:
(
x
-
2
);
float
textureNameX
=
classicview
?
(
x
+
(
float
)
w
/
2
-
TextureName
Width
/
2
)
:
(
x
-
2
);
g
.
DrawString
(
TextureName
,
SystemFonts
.
MessageBoxFont
,
(
selected
?
selectiontextbrush
:
(
used
?
fgbrush_used
:
fgbrush_unused
)),
textureNameX
,
y
+
h2
+
1
);
// Image size
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment