MCPcopy Create free account
hub / github.com/ZDoom/Raze / OnTimerExpired

Method OnTimerExpired

libraries/ZWidget/src/widgets/lineedit/lineedit.cpp:942–957  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

940}
941
942void LineEdit::OnTimerExpired()
943{
944 if (!IsVisible())
945 {
946 timer->Stop();
947 return;
948 }
949
950 if (cursor_blink_visible)
951 timer->Start(500);
952 else
953 timer->Start(500);
954
955 cursor_blink_visible = !cursor_blink_visible;
956 Update();
957}
958
959void LineEdit::OnGeometryChanged()
960{

Callers

nothing calls this directly

Calls 2

StopMethod · 0.45
StartMethod · 0.45

Tested by

no test coverage detected