forked from openlp/openlp
Added pptm as support file format for Powerpoint, Powerpoint Viewer and Libre/OpenOffice Impress. Fixes bug 1088800.
Fixes: https://launchpad.net/bugs/1088800
This commit is contained in:
parent
7d51352b2d
commit
9c64bd9d56
@ -85,7 +85,7 @@ class ImpressController(PresentationController):
|
||||
log.debug('Initialising')
|
||||
super(ImpressController, self).__init__(plugin, 'Impress', ImpressDocument)
|
||||
self.supports = ['odp']
|
||||
self.also_supports = ['ppt', 'pps', 'pptx', 'ppsx']
|
||||
self.also_supports = ['ppt', 'pps', 'pptx', 'ppsx', 'pptm']
|
||||
self.process = None
|
||||
self.desktop = None
|
||||
self.manager = None
|
||||
|
@ -64,7 +64,7 @@ class PowerpointController(PresentationController):
|
||||
"""
|
||||
log.debug('Initialising')
|
||||
super(PowerpointController, self).__init__(plugin, 'Powerpoint', PowerpointDocument)
|
||||
self.supports = ['ppt', 'pps', 'pptx', 'ppsx']
|
||||
self.supports = ['ppt', 'pps', 'pptx', 'ppsx', 'pptm']
|
||||
self.process = None
|
||||
|
||||
def check_available(self):
|
||||
|
@ -63,7 +63,7 @@ class PptviewController(PresentationController):
|
||||
log.debug('Initialising')
|
||||
self.process = None
|
||||
super(PptviewController, self).__init__(plugin, 'Powerpoint Viewer', PptviewDocument)
|
||||
self.supports = ['ppt', 'pps', 'pptx', 'ppsx']
|
||||
self.supports = ['ppt', 'pps', 'pptx', 'ppsx', 'pptm']
|
||||
|
||||
def check_available(self):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user