We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29eccc2 commit a17ca57Copy full SHA for a17ca57
src/home/room_screen.rs
@@ -1305,8 +1305,8 @@ impl Widget for RoomScreen {
1305
// Pass this state to each of the `populate_*` functions so they can attempt to re-use
1306
// an item in the timeline's portallist that was previously populated, if one exists.
1307
let item_drawn_status = ItemDrawnStatus {
1308
- content_drawn: tl_state.content_drawn_since_last_update.contains(&tl_idx),
1309
- profile_drawn: tl_state.profile_drawn_since_last_update.contains(&tl_idx),
+ content_drawn: tl_state.content_drawn_since_last_update.contains(tl_idx),
+ profile_drawn: tl_state.profile_drawn_since_last_update.contains(tl_idx),
1310
};
1311
1312
let item = {
0 commit comments