FSpot.MainWindow.HandleIconViewKeyPressEvent C# (CSharp) Method

HandleIconViewKeyPressEvent() public method

public HandleIconViewKeyPressEvent ( object sender, Gtk args ) : void
sender object
args Gtk
return void
		void HandleIconViewKeyPressEvent (object sender, Gtk.KeyPressEventArgs args)
		{
			HandleCommonPhotoCommands (sender, args);
			if ((bool)args.RetVal)
				return;

			switch (args.Event.Key) {
			case Gdk.Key.F:
			case Gdk.Key.f:
				HandleViewFullscreen (sender, args);
				args.RetVal = true;
				break;
			}
		}
MainWindow