root > Senior Software Engineer | Scala, AWS, Kubernetes, Microservices, Python, Go, PostgreSQL

Technical Blog: Functional Programming, Cloud Architecture & DevOps


  • Home

  • Categories

  • Archives

  • Tags

  • Search

GTK - PYTHON (Gtk.Window)

Posted on 2015-06-23

GTK - PYTHON (Gtk.Window)

If you want to set your windows doesn’t maximize , you can do it with unmaximize() function. However it doesn’t work properly. 

window = Gtk.Window()

window.unmaximize()

The second solution is disabling it via resizable function. It works proberly on Ubuntu. 

window = Gtk.Window()

window.resizable(False)

# gtk # python # resizable # window # disable
GTK - PYTHON (filechooser-directorychooser)
GTK - PYTHON at firtst
  • Table of Contents
  • Overview
teaddict

teaddict

205 posts
37 categories
645 tags
RSS
GitHub
  1. 1 GTK - PYTHON (Gtk.Window)
© 2025 teaddict