Kaydet (Commit) 5053584e authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl Kaydeden (comit) Tomaž Vajngerl

Look for "online" theme when running LOOL and "ios" only on IOS

Change-Id: I5ac2c764dd11381d6354a7727700ba1fa4b76a53
Reviewed-on: https://gerrit.libreoffice.org/72269
Tested-by: Jenkins
Reviewed-by: 's avatarTomaž Vajngerl <quikee@gmail.com>
üst c6bf2562
......@@ -90,8 +90,12 @@ FileDefinitionWidgetDraw::FileDefinitionWidgetDraw(SalGraphics& rGraphics)
: m_rGraphics(rGraphics)
, m_bIsActive(false)
{
if (comphelper::LibreOfficeKit::isActive())
m_pWidgetDefinition = getWidgetDefinitionForTheme("online");
#ifdef IOS
if (!m_pWidgetDefinition)
m_pWidgetDefinition = getWidgetDefinitionForTheme("ios");
#endif
if (m_pWidgetDefinition)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment