mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:52:45 +00:00 
			
		
		
		
	PixelPaint: Remove conflicting action hotkey
The new CommandPalette feature conflicts with PixelPaint's Clear Selection action keyboard shortcut (Ctrl + Shift + A). Fixes: #12222
This commit is contained in:
		
							parent
							
								
									30a143c79e
								
							
						
					
					
						commit
						a96b15d2bc
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -282,7 +282,7 @@ void MainWidget::initialize_menubar(GUI::Window& window) | |||
|         editor->selection().merge(editor->active_layer()->relative_rect(), PixelPaint::Selection::MergeMode::Set); | ||||
|     })); | ||||
|     m_edit_menu->add_action(GUI::Action::create( | ||||
|         "Clear &Selection", { Mod_Ctrl | Mod_Shift, Key_A }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/clear-selection.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) { | ||||
|         "Clear &Selection", Gfx::Bitmap::try_load_from_file("/res/icons/16x16/clear-selection.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) { | ||||
|             auto* editor = current_image_editor(); | ||||
|             VERIFY(editor); | ||||
|             editor->selection().clear(); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Jagger De Leo
						Jagger De Leo