diff options
| author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-11-23 19:35:07 +0100 | 
|---|---|---|
| committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-11-23 19:36:28 +0100 | 
| commit | 8193bc1e9a141c493af7a73488055ba0005b80f9 (patch) | |
| tree | cd0f6b09dff429b2f894d23a89a98b6ffca9bf12 | |
| parent | d775971e94e374f776e388d1a7b46fda52d8836c (diff) | |
desktop-shell: Unlock dialog needs to be a custom windowshell-fixes
Since set_toplevel would overwrite set_lock_surface.
| -rw-r--r-- | clients/desktop-shell.c | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/clients/desktop-shell.c b/clients/desktop-shell.c index 5dac3ec..5b8da64 100644 --- a/clients/desktop-shell.c +++ b/clients/desktop-shell.c @@ -410,6 +410,7 @@ unlock_dialog_create(struct desktop *desktop)  	dialog->window = window_create(display, 260, 230);  	window_set_title(dialog->window, "Unlock your desktop"); +	window_set_custom(dialog->window);  	window_set_user_data(dialog->window, dialog);  	window_set_redraw_handler(dialog->window, unlock_dialog_redraw_handler); | 
