mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
9 lines
247 B
Python
9 lines
247 B
Python
from odoo import models
|
|
|
|
class ThemeClean(models.AbstractModel):
|
|
_inherit = 'theme.utils'
|
|
|
|
def _theme_clean_post_copy(self, mod):
|
|
# Change preset for headings font
|
|
self.enable_view('website.option_font_title_02_variables')
|