Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pwmt
zathura
Commits
834bc8f4
Commit
834bc8f4
authored
Oct 26, 2013
by
Sebastian Ramacher
Browse files
CS
Signed-off-by:
Sebastian Ramacher
<
sebastian+dev@ramacher.at
>
parent
3629e3ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
shortcuts.c
View file @
834bc8f4
...
...
@@ -169,15 +169,15 @@ sc_adjust_window(girara_session_t* session, girara_argument_t* argument,
GTK_SCROLLED_WINDOW
(
session
->
gtk
.
view
));
if
(
vscrollbar
!=
NULL
)
{
int
scroll_width
;
int
scroll_width
;
#if (GTK_MAJOR_VERSION == 3)
gtk_widget_get_preferred_width
(
GTK_WIDGET
(
vscrollbar
),
NULL
,
&
scroll_width
);
gtk_widget_get_preferred_width
(
GTK_WIDGET
(
vscrollbar
),
NULL
,
&
scroll_width
);
#else
GtkRequisition
requisition
;
gtk_widget_get_requisition
(
vscrollbar
,
&
requisition
);
scroll_width
=
requisition
.
width
;
#endif
if
(
0
<
scroll_width
&&
(
unsigned
)
scroll_width
<
width
)
{
if
(
0
<
scroll_width
&&
(
unsigned
int
)
scroll_width
<
width
)
{
width
-=
scroll_width
;
scale
=
(
double
)(
width
-
(
pages_per_row
-
1
)
*
padding
)
/
(
double
)(
pages_per_row
*
cell_width
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment