Skip to content

Commit 6117092

Browse files
teste 8$
1 parent effa278 commit 6117092

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/build-linux-legacy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
uses: actions/upload-release-asset@v1
152152
with:
153153
# Usa a mesma release criada pelo job Linux
154-
upload_url: ${{ needs.build.outputs.upload_url }}
154+
upload_url: ${{ steps.create_release.outputs.upload_url }}
155155
asset_path: dist/docviewer-windows.zip
156156
asset_name: "docviewer-windows.zip"
157157
asset_content_type: application/octet-stream

DocViewerDesktop/editor/actions/edit_actions.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,14 +300,12 @@ def updateCompleteHtml(self):
300300
"""
301301

302302
def verifyChangesAndSetTabName(self):
303-
# print("Verificando mudanças no arquivo...")
304303
current_index = self.ui.tab_widget.currentIndex()
305304
current_tab = self.ui.tab_widget.widget(current_index)
306305
if current_tab in self.ui.open_files:
307306
file_path = self.ui.open_files[current_tab][0]
308307
isModified = self.ui.open_files[current_tab][1]
309308
if not file_path.endswith('*') and not isModified:
310-
# print("Arquivo modificado, atualizando nome da aba...")
311309
file_name = file_path.split('/')[-1]
312310
self.ui.tab_widget.setTabText(current_index, f"{file_name}*")
313311
self.ui.open_files[current_tab][1] = True

0 commit comments

Comments
 (0)