Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
340e08a4
Commit
340e08a4
authored
Mar 06, 2009
by
Adrian Robert
Browse files
(ns_draw_vertical_window_border): Draw 1 pixel wide, not two, and
use NSRectFill instead of NSDrawGroove.
parent
4ddf94bd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/nsterm.m
src/nsterm.m
+2
-2
No files found.
src/ChangeLog
View file @
340e08a4
2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
(ns_draw_vertical_window_border): Draw 1 pixel wide, not two, and
use NSRectFill instead of NSDrawGroove.
2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
* nsterm.m (x_set_window_size): Change back to calculated method
...
...
src/nsterm.m
View file @
340e08a4
...
...
@@ -2454,7 +2454,7 @@ External call (RIF): draw cursor
{
struct frame *f = XFRAME (WINDOW_FRAME (w));
struct face *face;
NSRect r = NSMakeRect (x, y0,
2
, y1-y0);
NSRect r = NSMakeRect (x, y0,
1
, y1-y0);
NSTRACE (ns_draw_vertical_window_border);
...
...
@@ -2463,7 +2463,7 @@ External call (RIF): draw cursor
[ns_lookup_indexed_color(face->foreground, f) set];
ns_focus (f, &r, 1);
NS
DrawGroove (r,
r);
NS
RectFill(
r);
ns_unfocus (f);
}
...
...
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