mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-10 23:20:54 +00:00
Put the vertical splitter at 3/8 * screen_width.
Sat Nov 12 23:39:29 2005 Soeren Sandmann <sandmann@redhat.com> * sysprof.c (set_sizes): Put the vertical splitter at 3/8 * screen_width. * configure.ac: Disable warning.
This commit is contained in:
committed by
Søren Sandmann Pedersen
parent
3a306d20d0
commit
b6e9105cd2
@ -1,3 +1,10 @@
|
|||||||
|
Sat Nov 12 23:39:29 2005 Soeren Sandmann <sandmann@redhat.com>
|
||||||
|
|
||||||
|
* sysprof.c (set_sizes): Put the vertical splitter at 3/8 *
|
||||||
|
screen_width.
|
||||||
|
|
||||||
|
* configure.ac: Disable warning.
|
||||||
|
|
||||||
Sat Nov 12 19:44:43 2005 Søren Sandmann <sandmann@redhat.com>
|
Sat Nov 12 19:44:43 2005 Søren Sandmann <sandmann@redhat.com>
|
||||||
|
|
||||||
* module/sysprof-module.c (read_frame): New function that uses
|
* module/sysprof-module.c (read_frame): New function that uses
|
||||||
|
|||||||
46
configure.ac
46
configure.ac
@ -117,25 +117,27 @@ Makefile
|
|||||||
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
echo
|
if 0; then
|
||||||
echo "%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%"
|
echo
|
||||||
echo "@"
|
echo "%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%"
|
||||||
echo "@ Thank you for testing cvs HEAD of sysprof."
|
echo "@"
|
||||||
echo "%"
|
echo "% Thank you for testing cvs HEAD of sysprof."
|
||||||
echo "% There are currently no known bugs in the kernel"
|
echo "@"
|
||||||
echo "@ module in this version, but there could easily be"
|
echo "% There are currently no known bugs in the kernel"
|
||||||
echo "% unknown ones. Please report any crashes or lockups"
|
echo "@ module in this version, but there could easily be"
|
||||||
echo "@ that you experience."
|
echo "% unknown ones. Please report any crashes or lockups"
|
||||||
echo "%"
|
echo "@ that you experience."
|
||||||
echo "@"
|
echo "%"
|
||||||
echo "% If you need a stable version of sysprof, either"
|
echo "@"
|
||||||
echo "@ get version 1.0 from"
|
echo "% If you need a stable version of sysprof, either"
|
||||||
echo "%"
|
echo "@ get version 1.0 from"
|
||||||
echo "@ http://www.daimi.au.dk/~sandmann/sysprof"
|
echo "%"
|
||||||
echo "%"
|
echo "@ http://www.daimi.au.dk/~sandmann/sysprof"
|
||||||
echo "@ or do"
|
echo "%"
|
||||||
echo "%"
|
echo "@ or do"
|
||||||
echo "@ cvs -z3 upd -r sysprof-1-0"
|
echo "%"
|
||||||
echo "%"
|
echo "@ cvs -z3 upd -r sysprof-1-0"
|
||||||
echo "@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@"
|
echo "%"
|
||||||
echo
|
echo "@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@"
|
||||||
|
echo
|
||||||
|
fi
|
||||||
|
|||||||
@ -1231,13 +1231,12 @@ set_sizes (GtkWindow *window,
|
|||||||
gtk_window_resize (window, width, height);
|
gtk_window_resize (window, width, height);
|
||||||
|
|
||||||
gtk_paned_set_position (GTK_PANED (vpaned), height / 2);
|
gtk_paned_set_position (GTK_PANED (vpaned), height / 2);
|
||||||
gtk_paned_set_position (GTK_PANED (hpaned), width / 2);
|
gtk_paned_set_position (GTK_PANED (hpaned), width * 3 / 8);
|
||||||
|
|
||||||
width = monitor.width * 5 / 8;
|
width = monitor.width * 5 / 8;
|
||||||
height = monitor.height * 5/ 8;
|
height = monitor.height * 5 / 8;
|
||||||
|
|
||||||
gtk_window_resize (screenshot_window, width, height);
|
gtk_window_resize (screenshot_window, width, height);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|||||||
Reference in New Issue
Block a user