summaryrefslogtreecommitdiff
path: root/src/split.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2001-04-07 03:16:21 +0000
committersabetts <sabetts>2001-04-07 03:16:21 +0000
commit061f1abef270b3e79326f8f7a4cac1b3a49b7bc1 (patch)
tree77f9aa4dae806dcc4e092fddd2782faa278bfc2b /src/split.c
parentdf64022d3e7c09826c573a050e537b639afb8034 (diff)
downloadratpoison-061f1abef270b3e79326f8f7a4cac1b3a49b7bc1.zip
* src/split.c (remove_all_splits): only maximize the current
window if there is one. (maximize_frame): remove unused code to retrieve the current screen_info. * src/actions.c (cmd_h_split): calls h_split_frame on the current frame. (cmd_v_split): likewise (cmd_only): even if the current frame is empty, call remove_all_splits.
Diffstat (limited to 'src/split.c')
-rw-r--r--src/split.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/split.c b/src/split.c
index e2ec89c..a257921 100644
--- a/src/split.c
+++ b/src/split.c
@@ -37,9 +37,6 @@ delete_frame_from_list (rp_window_frame *frame)
static void
maximize_frame (rp_window_frame *frame)
{
- screen_info *s;
- s = current_screen();
-
frame->x = PADDING_LEFT;
frame->y = PADDING_TOP;
@@ -280,8 +277,11 @@ remove_all_splits ()
create_initial_frame ();
rp_current_frame->win = cur_window;
- maximize (cur_window);
- XRaiseWindow (dpy, cur_window->w);
+ if (cur_window)
+ {
+ maximize (cur_window);
+ XRaiseWindow (dpy, cur_window->w);
+ }
}
static int