ui: fix wallet list update at single panel mode
This commit is contained in:
parent
8260479f1c
commit
22e9bf8b4b
1 changed files with 5 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
use std::time::Duration;
|
||||||
use egui::{Align, Id, Layout, Margin, RichText, Rounding, ScrollArea, Widget};
|
use egui::{Align, Id, Layout, Margin, RichText, Rounding, ScrollArea, Widget};
|
||||||
|
|
||||||
use crate::AppConfig;
|
use crate::AppConfig;
|
||||||
|
@ -219,6 +220,10 @@ impl WalletsContent {
|
||||||
..Default::default()
|
..Default::default()
|
||||||
})
|
})
|
||||||
.show_inside(ui, |ui| {
|
.show_inside(ui, |ui| {
|
||||||
|
// Update ui after 1 sec at single panel mode.
|
||||||
|
if !dual_panel {
|
||||||
|
ui.ctx().request_repaint_after(Duration::from_millis(1000));
|
||||||
|
}
|
||||||
// Show list of wallets.
|
// Show list of wallets.
|
||||||
self.wallet_list_ui(ui, dual_panel, cb);
|
self.wallet_list_ui(ui, dual_panel, cb);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue