FSpot.MainWindow.HandleLoupe C# (CSharp) Method

HandleLoupe() public method

public HandleLoupe ( object sender, EventArgs args ) : void
sender object
args System.EventArgs
return void
		void HandleLoupe (object sender, EventArgs args)
		{
			// Don't steal characters from any text entries
			if (Window.Focus is Gtk.Entry && Gtk.Global.CurrentEvent is Gdk.EventKey) {
				Window.Focus.ProcessEvent (Gtk.Global.CurrentEvent);
				return;
			}

			photo_view.View.ShowHideLoupe ();
		}
MainWindow