mirror of
				https://codeberg.org/dwl/dwl.git
				synced 2025-10-31 20:14:20 +00:00 
			
		
		
		
	fix multi-dpi scaling
This commit is contained in:
		
							parent
							
								
									9b9ef0bae5
								
							
						
					
					
						commit
						6cad698517
					
				| @ -77,8 +77,6 @@ user-level service manager like s6 or `systemd --user`. | |||||||
| dwl is a work in progress, and it has not yet reached its feature goals in a | dwl is a work in progress, and it has not yet reached its feature goals in a | ||||||
| number of ways: | number of ways: | ||||||
| 
 | 
 | ||||||
| - Features not yet implemented: |  | ||||||
|     - xdg-shell popups |  | ||||||
| - Urgent/attention/focus-request | - Urgent/attention/focus-request | ||||||
| - Normal/selected/urgent border colors | - Normal/selected/urgent border colors | ||||||
| - layer-shell | - layer-shell | ||||||
| @ -86,8 +84,6 @@ number of ways: | |||||||
| - Damage tracking | - Damage tracking | ||||||
| - Fullscreen/fixed windows (or whatever the Wayland analogues are) | - Fullscreen/fixed windows (or whatever the Wayland analogues are) | ||||||
| - XWayland | - XWayland | ||||||
| - HiDPI works, but multi-DPI is not as nice as sway, depending on the scale |  | ||||||
|   factors involved.  Perhaps scaling filters are needed? |  | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| ## Acknowledgements | ## Acknowledgements | ||||||
|  | |||||||
							
								
								
									
										4
									
								
								dwl.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								dwl.c
									
									
									
									
									
								
							| @ -633,6 +633,8 @@ maprequest(struct wl_listener *listener, void *data) | |||||||
| 	wl_list_insert(&clients, &c->link); | 	wl_list_insert(&clients, &c->link); | ||||||
| 	wl_list_insert(&fstack, &c->flink); | 	wl_list_insert(&fstack, &c->flink); | ||||||
| 	wl_list_insert(&stack, &c->slink); | 	wl_list_insert(&stack, &c->slink); | ||||||
|  | 	/* XXX should check all outputs, also needs a send_leave counterpart */ | ||||||
|  | 	wlr_surface_send_enter(c->xdg_surface->surface, c->mon->wlr_output); | ||||||
| 	keyboardfocus(c, NULL); | 	keyboardfocus(c, NULL); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| @ -1033,6 +1035,8 @@ sendmon(Client *c, Monitor *m) | |||||||
| 	if (c->mon == m) | 	if (c->mon == m) | ||||||
| 		return; | 		return; | ||||||
| 	c->mon = m; | 	c->mon = m; | ||||||
|  | 	/* XXX should check all outputs, also needs a send_leave counterpart */ | ||||||
|  | 	wlr_surface_send_enter(c->xdg_surface->surface, c->mon->wlr_output); | ||||||
| 	c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */ | 	c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */ | ||||||
| 
 | 
 | ||||||
| 	if (c == selclient()) | 	if (c == selclient()) | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Devin J. Pohly
						Devin J. Pohly