We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d7e4c commit 6a08d4bCopy full SHA for 6a08d4b
crates/notedeck_chrome/src/android.rs
@@ -10,7 +10,7 @@ use notedeck::Notedeck;
10
#[tokio::main]
11
pub async fn android_main(app: AndroidApp) {
12
//use tracing_logcat::{LogcatMakeWriter, LogcatTag};
13
- use tracing_subscriber::{EnvFilter, prelude::*};
+ use tracing_subscriber::{prelude::*, EnvFilter};
14
15
std::env::set_var("RUST_BACKTRACE", "full");
16
//std::env::set_var("DAVE_ENDPOINT", "http://ollama.jb55.com/v1");
crates/notedeck_ui/src/note/contents.rs
@@ -4,7 +4,7 @@ use crate::{
4
};
5
use notedeck::{JobsCache, RenderableMedia};
6
7
-use egui::{vec2, Color32, Hyperlink, Label, RichText};
+use egui::{Color32, Hyperlink, Label, RichText};
8
use nostrdb::{BlockType, Mention, Note, NoteKey, Transaction};
9
use tracing::warn;
@@ -42,8 +42,6 @@ impl<'a, 'd> NoteContents<'a, 'd> {
42
43
impl egui::Widget for &mut NoteContents<'_, '_> {
44
fn ui(self, ui: &mut egui::Ui) -> egui::Response {
45
- ui.spacing_mut().item_spacing = vec2(0.0, 0.0);
46
-
47
if self.options.contains(NoteOptions::ShowNoteClientTop) {
48
render_client(ui, self.note_context.note_cache, self.note);
49
}
@@ -160,8 +158,6 @@ pub fn render_note_contents<'a>(
160
158
return;
161
159
162
163
164
165
'block_loop: for block in blocks.iter(note) {
166
match block.blocktype() {
167
BlockType::MentionBech32 => match block.as_mention().unwrap() {
0 commit comments