| 903 | } |
| 904 | |
| 905 | Font::StyleScopeGuard Font::ApplyStyle(Style new_style) { |
| 906 | vApplyStyle(new_style); |
| 907 | current_style = new_style; |
| 908 | style_applied = true; |
| 909 | |
| 910 | return lcf::ScopeGuard<std::function<void()>>([&]() { |
| 911 | vApplyStyle(original_style); |
| 912 | current_style = original_style; |
| 913 | style_applied = false; |
| 914 | }); |
| 915 | } |
| 916 | |
| 917 | ExFont::ExFont() : Font("exfont", HEIGHT, false, false) { |
| 918 | } |