diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-05-28 15:03:47 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-05-28 15:03:47 +0300 |
commit | 47024a3bd5f9b9173319a0c345e546bb573daf56 (patch) | |
tree | 43c27e7975613c83b7ed040a55956842b0d7405b /src/gmdocument.c | |
parent | 3f06ba4868c974e86d616dc3049c2e5f5402e83f (diff) |
Gempub: Linear navigation with left/right arrow keys
Diffstat (limited to 'src/gmdocument.c')
-rw-r--r-- | src/gmdocument.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gmdocument.c b/src/gmdocument.c index ec406a63..ad8616a3 100644 --- a/src/gmdocument.c +++ b/src/gmdocument.c | |||
@@ -30,6 +30,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ | |||
30 | #include "visited.h" | 30 | #include "visited.h" |
31 | #include "bookmarks.h" | 31 | #include "bookmarks.h" |
32 | #include "app.h" | 32 | #include "app.h" |
33 | #include "defs.h" | ||
33 | 34 | ||
34 | #include <the_Foundation/ptrarray.h> | 35 | #include <the_Foundation/ptrarray.h> |
35 | #include <the_Foundation/regexp.h> | 36 | #include <the_Foundation/regexp.h> |
@@ -400,7 +401,7 @@ static void doLayout_GmDocument_(iGmDocument *d) { | |||
400 | static const float bottomMargin[max_GmLineType] = { | 401 | static const float bottomMargin[max_GmLineType] = { |
401 | 0.0f, 0.333f, 1.0f, 0.5f, 0.5f, 0.5f, 0.5f, 0.25f | 402 | 0.0f, 0.333f, 1.0f, 0.5f, 0.5f, 0.5f, 0.5f, 0.25f |
402 | }; | 403 | }; |
403 | static const char *arrow = "\u27a4"; | 404 | static const char *arrow = rightArrowhead_Icon; |
404 | static const char *envelope = "\U0001f4e7"; | 405 | static const char *envelope = "\U0001f4e7"; |
405 | static const char *bullet = "\u2022"; | 406 | static const char *bullet = "\u2022"; |
406 | static const char *folder = "\U0001f4c1"; | 407 | static const char *folder = "\U0001f4c1"; |