Smuxi.Frontend.Gnome.MainWindow.OnConfigureEvent C# (CSharp) Method

OnConfigureEvent() protected method

protected OnConfigureEvent ( Gdk e ) : bool
e Gdk
return bool
        protected override bool OnConfigureEvent(Gdk.EventConfigure e)
        {
            Trace.Call(e);

            var widthChanged = WindowWidth != e.Width;
            if (widthChanged) {
                WindowWidth = e.Width;
                CheckLayout();
            }
            return base.OnConfigureEvent(e);
        }