[SOLVED] PyGTK + Glade - Application not going full-screen.
<p>I am writing an application, and when designing the interface in Glade, at a previous point, I set the default size and "size request" to 800x600. I figured it would be better to run the application full-screen (as it is going to be deployed on a small, embedded system with a 7" monitor).</p>
<p>Note, I could not get the application to go to 800x600 by setting the "default size" alone, I also had to set the "size request".</p>
<p>So, I took away the "default size" and "size request" and called the fullscreen() function on my top-level, gtk.Window object. For whatever reason though, the window does not go full-screen. I am calling the function right after I assign the widget to a varable. Any ideas?</p>
<pre><code>toplevel = gladeFile.get_widget("toplevel")
toplevel.show_all()
toplevel.fullscreen()
</code></pre>
<p><strong>SOLVED</strong></p>
<p>In Glade, on the top-level gtk.Window widget, I had to set "Resizable" to "Yes".</p>