[GB.GTK]
* BUG: Use gtk_window_set_resize_grip only with GTK+ >= 2.24.4. git-svn-id: svn://localhost/gambas/trunk@4029 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
9488c7aff7
commit
bf0c0c4b57
1 changed files with 1 additions and 1 deletions
|
@ -484,7 +484,7 @@ void gMainWindow::setVisible(bool vl)
|
|||
gtk_window_set_transient_for(GTK_WINDOW(border), GTK_WINDOW(active->border));
|
||||
}
|
||||
|
||||
#if (GTK_MAJOR_VERSION >= 2 && GTK_MINOR_VERSION >= 24) || (GTK_MAJOR_VERSION >= 3)
|
||||
#if GTK_CHECK_VERSION(2,24,4)
|
||||
gtk_window_set_has_resize_grip(GTK_WINDOW(border), false);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue