This commit is contained in:
rushmore75 2025-05-29 08:28:12 -06:00
parent 165d946e0d
commit 7442a14a8f
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ use iced::{
},
};
use std::fs::{File, OpenOptions};
use std::fs::OpenOptions;
use std::io::{BufWriter, Write};
use std::{env, fs, path::PathBuf};
use texts::*;

View File

@ -192,7 +192,7 @@ pub fn get(book: &str, chap_and_ver: &str, bible: &Bible) -> Result<String, Stri
let translation = &bible.translation_name;
buf += &format!("{style_bold}[{translation}] {style_underline}{book_name}:{start}-{end}{style_reset}:\n");
buf += &format!("{style_bold}[{translation}] {style_underline}{book_name} {}:{start}-{end}{style_reset}:\n", chapter.number);
for num in start..=end {
if let Some(verse) = chapter.get_verse_by_index(num) {
buf += &format!(