Skip to content

Commit

Permalink
Remove colon from file names
Browse files Browse the repository at this point in the history
Doesn't work with windows fs
  • Loading branch information
DavidLazarescu committed Mar 28, 2024
1 parent 2df1a2e commit 5166115
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/presentation/toolsPage/MExtractPagesPopup.qml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ Popup {

extractButton.loading = true

var name = "Rearranged: " + bookSelector.selectedItems[0].title
var name = "Rearranged " + bookSelector.selectedItems[0].title
ToolsController.extractPages(
name, bookSelector.selectedItems[0].filePath,
splitStringInput.text)
Expand Down
2 changes: 1 addition & 1 deletion src/presentation/toolsPage/MMergePopup.qml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ Popup {

mergeButton.loading = true

var name = "Merged: " + bookSelector.selectedItems[0].title
var name = "Merged " + bookSelector.selectedItems[0].title
ToolsController.merge(name, bookSelector.selectedItems.map(
x => x.filePath))
}
Expand Down

0 comments on commit 5166115

Please sign in to comment.