remove dup of default window size.
This commit is contained in:
		
							
								
								
									
										1
									
								
								TODO
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								TODO
									
									
									
									
									
								
							@ -11,6 +11,7 @@ code & interface
 | 
				
			|||||||
* clean selection code
 | 
					* clean selection code
 | 
				
			||||||
* clean and complete terminfo entry
 | 
					* clean and complete terminfo entry
 | 
				
			||||||
* fix shift up/down (shift selection in emacs)
 | 
					* fix shift up/down (shift selection in emacs)
 | 
				
			||||||
 | 
					* fast drawing
 | 
				
			||||||
* ...
 | 
					* ...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
misc
 | 
					misc
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										4
									
								
								st.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								st.c
									
									
									
									
									
								
							@ -1627,8 +1627,8 @@ xinit(void) {
 | 
				
			|||||||
	xloadcols();
 | 
						xloadcols();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* window - default size */
 | 
						/* window - default size */
 | 
				
			||||||
	xw.bufh = 24 * xw.ch;
 | 
						xw.bufh = term.row * xw.ch;
 | 
				
			||||||
	xw.bufw = 80 * xw.cw;
 | 
						xw.bufw = term.col * xw.cw;
 | 
				
			||||||
	xw.h = xw.bufh + 2*BORDER;
 | 
						xw.h = xw.bufh + 2*BORDER;
 | 
				
			||||||
	xw.w = xw.bufw + 2*BORDER;
 | 
						xw.w = xw.bufw + 2*BORDER;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user