* @brief Returns true if the toolbar should be hidden at startup. */
| 346 | * @brief Returns true if the toolbar should be hidden at startup. |
| 347 | */ |
| 348 | bool CLI::hideToolbar() const noexcept |
| 349 | { |
| 350 | #ifdef BUILD_COMMERCIAL |
| 351 | return runtimeMode() || m_parser.isSet(m_opts.noToolbarOpt) || fullscreen(); |
| 352 | #else |
| 353 | return fullscreen(); |
| 354 | #endif |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * @brief Returns true if --api-server was passed. |
no outgoing calls
no test coverage detected