Skip to content

Commit

Permalink
tab: Fix extra indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mitya57 committed Mar 25, 2023
1 parent 965c803 commit f3a5ddc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ReText/tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,14 +281,14 @@ def triggerPreviewUpdate(self):
QTimer.singleShot(500, self.startPendingConversion)

def startPendingConversion(self):
self.previewOutdated = False

requested_extensions = ['ReText.mdx_posmap'] if globalSettings.syncScroll else []
self.converterProcess.start_conversion(self.getActiveMarkupClass().name,
self.fileName,
requested_extensions,
self.editBox.toPlainText(),
QDir.currentPath())
self.previewOutdated = False

requested_extensions = ['ReText.mdx_posmap'] if globalSettings.syncScroll else []
self.converterProcess.start_conversion(self.getActiveMarkupClass().name,
self.fileName,
requested_extensions,
self.editBox.toPlainText(),
QDir.currentPath())

def updateBoxesVisibility(self):
self.editBox.setVisible(self.previewState < PreviewNormal)
Expand Down

0 comments on commit f3a5ddc

Please sign in to comment.