ExtDependencyViewerCommands.cpp 778 B

1234567891011121314151617181920212223
  1. // Copyright 2017-2021 marynate. All Rights Reserved.
  2. #include "ExtDependencyViewerCommands.h"
  3. //////////////////////////////////////////////////////////////////////////
  4. // FExtDependencyViewerCommands
  5. #define LOCTEXT_NAMESPACE "ExtDependencyViewerCommands"
  6. FExtDependencyViewerCommands::FExtDependencyViewerCommands() : TCommands<FExtDependencyViewerCommands>(
  7. "ExtDependencyViewerCommands",
  8. NSLOCTEXT("Contexts", "ExtDependencyViewerCommands", "Dependency Viewer Commands"),
  9. NAME_None,
  10. FAppStyle::GetAppStyleSetName())
  11. {
  12. }
  13. void FExtDependencyViewerCommands::RegisterCommands()
  14. {
  15. UI_COMMAND(ZoomToFitSelected, "Zoom to Fit", "Zoom in and center the view on the selected item", EUserInterfaceActionType::Button, FInputChord(EKeys::Home));
  16. }
  17. #undef LOCTEXT_NAMESPACE