Re: [webkit-dev] webkit browser always minimzed on CentOS 7.1

2015-05-04 Thread Michael Catanzaro
On Mon, 2015-05-04 at 07:54 -0400, Jerry Geis wrote: > So I looked closer at my functions... > > void maximize(void) { > gtk_window_maximize(GTK_WINDOW(window)); > gtk_window_fullscreen(GTK_WINDOW(window)); > gtk_window_set_decorated(GTK_WINDOW(window), FALSE); > } Are you sure this p

Re: [webkit-dev] webkit browser always minimzed on CentOS 7.1

2015-05-04 Thread Bem Jones-Bey
You’re much more likely to reach people that know about using WebKit with GTK on the webkit-gtk mailing list: https://lists.webkit.org/mailman/listinfo/webkit-gtk - Bem On May 4, 2015, at 4:54 AM, Jerry Geis mailto:ge...@pagestation.com>> wrote: So I looked closer at my functions... void max

Re: [webkit-dev] migrating from 2.4.6 to 2.8.1

2015-05-04 Thread Philippe Normand
Hi Jerry, Please use webkit-...@lists.webkit.org for WebKitGTK topics. On Mon, 2015-05-04 at 10:43 -0400, Jerry Geis wrote: > I am migrating from 2.4.6 to 2.8.1... > > > under 2.4.6 there was a ./configure script - that appears to be gone. > (Not sure why, thought that was a standard thing). >

[webkit-dev] migrating from 2.4.6 to 2.8.1

2015-05-04 Thread Jerry Geis
I am migrating from 2.4.6 to 2.8.1... under 2.4.6 there was a ./configure script - that appears to be gone. (Not sure why, thought that was a standard thing). So then I searched for building webkit and I found Tools/Scripts/build-webkit So I looked in that directory in 2.8.1 and that file is not

Re: [webkit-dev] webkit browser always minimzed on CentOS 7.1

2015-05-04 Thread Jerry Geis
So I looked closer at my functions... void maximize(void) { gtk_window_maximize(GTK_WINDOW(window)); gtk_window_fullscreen(GTK_WINDOW(window)); gtk_window_set_decorated(GTK_WINDOW(window), FALSE); } This function in particular I am calling. If I comment out the gtk_window_fullscreen(