Compare commits
4 Commits
eb65d8582f
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
fd60959d41
|
|||
|
6b0bd4ac5c
|
|||
|
f543a46118
|
|||
|
9de3747328
|
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
|
/.qtcreator
|
||||||
/meson.build.user
|
/meson.build.user
|
||||||
/subprojects/*
|
/subprojects/*
|
||||||
!/subprojects/*.wrap
|
!/subprojects/*.wrap
|
||||||
|
|||||||
@@ -69,6 +69,11 @@ you can get a quick and dirty installation package for testing purposes using:
|
|||||||
$ meson compile deb
|
$ meson compile deb
|
||||||
# dpkg -i fiv-*.deb
|
# dpkg -i fiv-*.deb
|
||||||
|
|
||||||
|
And in case you keep the default installation prefix rather than _/usr_,
|
||||||
|
it is necessary to:
|
||||||
|
|
||||||
|
# glib-compile-schemas /usr/local/share/glib-2.0/schemas
|
||||||
|
|
||||||
Windows
|
Windows
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
'fiv' can be cross-compiled for Windows, provided that you install a bunch of
|
'fiv' can be cross-compiled for Windows, provided that you install a bunch of
|
||||||
|
|||||||
@@ -1506,7 +1506,7 @@ zoom_ask(FivView *self)
|
|||||||
// For example, we would like to be flexible with decimal spaces.
|
// For example, we would like to be flexible with decimal spaces.
|
||||||
GtkAdjustment *adjustment = gtk_adjustment_new(
|
GtkAdjustment *adjustment = gtk_adjustment_new(
|
||||||
self->scale * 100, 0., 100000., 1., 10., 0.);
|
self->scale * 100, 0., 100000., 1., 10., 0.);
|
||||||
GtkWidget *spin = gtk_spin_button_new(adjustment, 1., 0);
|
GtkWidget *spin = gtk_spin_button_new(adjustment, 1., 2);
|
||||||
gtk_spin_button_set_update_policy(
|
gtk_spin_button_set_update_policy(
|
||||||
GTK_SPIN_BUTTON(spin), GTK_UPDATE_IF_VALID);
|
GTK_SPIN_BUTTON(spin), GTK_UPDATE_IF_VALID);
|
||||||
gtk_entry_set_activates_default(GTK_ENTRY(spin), TRUE);
|
gtk_entry_set_activates_default(GTK_ENTRY(spin), TRUE);
|
||||||
|
|||||||
Reference in New Issue
Block a user