mirror of
https://github.com/fltk/fltk.git
synced 2026-05-31 22:04:26 +08:00
Fixed insufficiently invalidated cache in Fl_Browser (STR #1265). Fl_Browser::cahceline was set to 0, but Fl_Browser::cache was not which lead to confusion if the cache was usable or not.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5095 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
CHANGES IN FLTK 1.1.8
|
CHANGES IN FLTK 1.1.8
|
||||||
|
|
||||||
|
- Fixed insufficiently invalidated cache
|
||||||
|
in Fl_Browser (STR #1265)
|
||||||
- Attempt to fix multi monitor issues (STR #1153)
|
- Attempt to fix multi monitor issues (STR #1153)
|
||||||
- Fixed warnings when compiling w/Cygwin (STR #1152)
|
- Fixed warnings when compiling w/Cygwin (STR #1152)
|
||||||
- Fixed missing reset of flag in FLUID (STR #1187)
|
- Fixed missing reset of flag in FLUID (STR #1187)
|
||||||
|
|||||||
@@ -536,6 +536,7 @@ void Fl_Browser::swap(FL_BLINE *a, FL_BLINE *b) {
|
|||||||
}
|
}
|
||||||
// Disable cache -- we played around with positions
|
// Disable cache -- we played around with positions
|
||||||
cacheline = 0;
|
cacheline = 0;
|
||||||
|
cache = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Fl_Browser::swap(int ai, int bi) {
|
void Fl_Browser::swap(int ai, int bi) {
|
||||||
|
|||||||
Reference in New Issue
Block a user