diff options
author | sabetts <sabetts> | 2003-03-18 04:09:00 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2003-03-18 04:09:00 +0000 |
commit | f419b9d265c24f8deeffa348701e6deb085d204a (patch) | |
tree | 8c5d41e40d8c50421c15239f669644b00661b43d /src/split.c | |
parent | 6de1d7895d11250810988e7a7622cbaffbf9346f (diff) | |
download | ratpoison-f419b9d265c24f8deeffa348701e6deb085d204a.zip |
* src/split.c (resize_frame_horizontally): only resize to the left
if the frame isn't against the left side of the screen.
(resize_frame_vertically): only resize to the left
if the frame isn't against the top of the screen.
* src/split.c (create_initial_frame): call frame_new to allocate a frame.
(split_frame): likewise
Diffstat (limited to 'src/split.c')
-rw-r--r-- | src/split.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/split.c b/src/split.c index b357f69..71ed61b 100644 --- a/src/split.c +++ b/src/split.c @@ -516,7 +516,7 @@ resize_frame_horizontally (rp_window_frame *frame, int diff) { resize_frame_right (frame, NULL, diff); } - else + else if (frame_left (frame) > defaults.padding_left) { resize_frame_left (frame, NULL, diff); } @@ -536,7 +536,7 @@ resize_frame_vertically (rp_window_frame *frame, int diff) { resize_frame_bottom (frame, NULL, diff); } - else + else if (frame_left (frame) > defaults.padding_top) { resize_frame_top (frame, NULL, diff); } |