mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:02:45 +00:00 
			
		
		
		
	 b983dc8807
			
		
	
	
		b983dc8807
		
	
	
	
	
		
			
			The user can now navigate to the previous and next image using the left and right arrow keys respectively. These shortcuts were previously not working.
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			330 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			330 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| serenity_component(
 | |
|     ImageViewer
 | |
|     RECOMMENDED
 | |
|     TARGETS ImageViewer
 | |
|     DEPENDS ImageDecoder
 | |
| )
 | |
| 
 | |
| set(SOURCES
 | |
|     main.cpp
 | |
|         MainWidget.cpp
 | |
|         ViewWidget.cpp
 | |
| )
 | |
| 
 | |
| serenity_app(ImageViewer ICON filetype-image)
 | |
| target_link_libraries(ImageViewer PRIVATE LibCore LibDesktop LibGUI LibGfx LibImageDecoderClient LibMain)
 |