Use gimp_display_shell_get_scaled_image_size() instead of inaccurately
2008-07-13 Martin Nordholts <martinn@svn.gnome.org> * app/display/gimpdisplayshell-scroll.c (gimp_display_shell_setup_hscrollbar_with_value) (gimp_display_shell_setup_vscrollbar_with_value): Use gimp_display_shell_get_scaled_image_size() instead of inaccurately calculate that information locally. svn path=/trunk/; revision=26175
This commit is contained in:

committed by
Martin Nordholts

parent
a93373fdd9
commit
59a5825e23
@ -1,3 +1,11 @@
|
|||||||
|
2008-07-13 Martin Nordholts <martinn@svn.gnome.org>
|
||||||
|
|
||||||
|
* app/display/gimpdisplayshell-scroll.c
|
||||||
|
(gimp_display_shell_setup_hscrollbar_with_value)
|
||||||
|
(gimp_display_shell_setup_vscrollbar_with_value): Use
|
||||||
|
gimp_display_shell_get_scaled_image_size() instead of inaccurately
|
||||||
|
calculate that information locally.
|
||||||
|
|
||||||
2008-07-13 Martin Nordholts <martinn@svn.gnome.org>
|
2008-07-13 Martin Nordholts <martinn@svn.gnome.org>
|
||||||
|
|
||||||
* app/display/gimpnavigationeditor.c
|
* app/display/gimpnavigationeditor.c
|
||||||
|
@ -374,7 +374,7 @@ gimp_display_shell_setup_hscrollbar_with_value (GimpDisplayShell *shell,
|
|||||||
! shell->display->image)
|
! shell->display->image)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
sw = SCALEX (shell, gimp_image_get_width (shell->display->image));
|
gimp_display_shell_get_scaled_image_size (shell, &sw, NULL);
|
||||||
|
|
||||||
if (shell->disp_width < sw)
|
if (shell->disp_width < sw)
|
||||||
{
|
{
|
||||||
@ -414,7 +414,7 @@ gimp_display_shell_setup_vscrollbar_with_value (GimpDisplayShell *shell,
|
|||||||
! shell->display->image)
|
! shell->display->image)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
sh = SCALEY (shell, gimp_image_get_height (shell->display->image));
|
gimp_display_shell_get_scaled_image_size (shell, NULL, &sh);
|
||||||
|
|
||||||
if (shell->disp_height < sh)
|
if (shell->disp_height < sh)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user