Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
cf2c08ca
Commit
cf2c08ca
authored
Jul 02, 2005
by
Eli Zaretskii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(w32_draw_vertical_window_border): Use foreground of
VERTICAL_BORDER_FACE_ID for vertical border line.
parent
9ad5e4d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/w32term.c
src/w32term.c
+7
-1
No files found.
src/w32term.c
View file @
cf2c08ca
...
...
@@ -510,6 +510,7 @@ w32_draw_vertical_window_border (w, x, y0, y1)
struct
frame
*
f
=
XFRAME
(
WINDOW_FRAME
(
w
));
RECT
r
;
HDC
hdc
;
struct
face
*
face
;
r
.
left
=
x
;
r
.
right
=
x
+
1
;
...
...
@@ -517,7 +518,12 @@ w32_draw_vertical_window_border (w, x, y0, y1)
r
.
bottom
=
y1
;
hdc
=
get_frame_dc
(
f
);
w32_fill_rect
(
f
,
hdc
,
FRAME_FOREGROUND_PIXEL
(
f
),
&
r
);
face
=
FACE_FROM_ID
(
f
,
VERTICAL_BORDER_FACE_ID
);
if
(
face
)
w32_fill_rect
(
f
,
hdc
,
face
->
foreground
,
&
r
);
else
w32_fill_rect
(
f
,
hdc
,
FRAME_FOREGROUND_PIXEL
(
f
),
&
r
);
release_frame_dc
(
f
,
hdc
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment