I'm wondering if anyone knows the machanism whereby Ubuntu
"commandeers" the main menu system of a GTK application and sticks
it into the global top-of-screen menu bar, or combines it with the
application-window title bar? I'm talking about a "traditional",
non-CSD GTK application, where the "n
Dear all,
thanks for your help and advise, I found out what I was doing wrong,
and solved my problem, I was updating my window using:
void update ()
{
gtk_widget_hide (plot);
gtk_widget_show (plot);
}
While I should have been using:
gtk_widget_queue_draw (plot);
That solves everything, to