summaryrefslogtreecommitdiff
path: root/src/history.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-08-04 11:24:13 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-08-04 11:24:13 +0300
commit7a69d53ba72f9e5581c781dd4c54dd3a3e6b89b4 (patch)
treed84af4e3d72eb02c7cc3a15e08ceda42f59f9b02 /src/history.h
parent7fff669f5be5021862ae634b65f3ab18b17021dd (diff)
Remember scroll positions on visited pages
Diffstat (limited to 'src/history.h')
-rw-r--r--src/history.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/history.h b/src/history.h
index 4074b1aa..149e6b82 100644
--- a/src/history.h
+++ b/src/history.h
@@ -10,6 +10,7 @@ iDeclareTypeConstruction(HistoryItem)
10struct Impl_HistoryItem { 10struct Impl_HistoryItem {
11 iTime when; 11 iTime when;
12 iString url; 12 iString url;
13 int scrollY; /* unit is gap_UI */
13}; 14};
14 15
15iDeclareType(History) 16iDeclareType(History)