| 418 | } |
| 419 | |
| 420 | int Controller::verticalShadowTop() const { |
| 421 | return (Platform::NativeTitleRequiresShadow() |
| 422 | && Ui::Platform::NativeWindowFrameSupported() |
| 423 | && Core::App().settings().nativeWindowFrame()) |
| 424 | ? st::lineWidth |
| 425 | : 0; |
| 426 | } |
| 427 | |
| 428 | void Controller::showToast(Ui::Toast::Config &&config) { |
| 429 | Show(this).showToast(std::move(config)); |
no test coverage detected