|
|
|
@ -31,7 +31,10 @@ from imwald.core.author_html import ( |
|
|
|
thread_reply_author_row_html, |
|
|
|
thread_reply_author_row_html, |
|
|
|
) |
|
|
|
) |
|
|
|
from imwald.core.database import Database |
|
|
|
from imwald.core.database import Database |
|
|
|
from imwald.core.display_constants import IMAGE_DISPLAY_MAX_WIDTH_PX |
|
|
|
from imwald.core.display_constants import ( |
|
|
|
|
|
|
|
IMAGE_DISPLAY_MAX_WIDTH_PX, |
|
|
|
|
|
|
|
WINDOW_CONTENT_BOTTOM_SAFE_INSET_PX, |
|
|
|
|
|
|
|
) |
|
|
|
from imwald.core.kind0_profile import ( |
|
|
|
from imwald.core.kind0_profile import ( |
|
|
|
collect_nip05_identifiers, |
|
|
|
collect_nip05_identifiers, |
|
|
|
kind0_json_object_prefix, |
|
|
|
kind0_json_object_prefix, |
|
|
|
@ -346,7 +349,12 @@ class FeedPage(QWidget): |
|
|
|
split.setSizes([780, 420]) |
|
|
|
split.setSizes([780, 420]) |
|
|
|
|
|
|
|
|
|
|
|
outer = QVBoxLayout(self) |
|
|
|
outer = QVBoxLayout(self) |
|
|
|
outer.setContentsMargins(10, 8, 10, 8) |
|
|
|
outer.setContentsMargins( |
|
|
|
|
|
|
|
10, |
|
|
|
|
|
|
|
8, |
|
|
|
|
|
|
|
10, |
|
|
|
|
|
|
|
8 + WINDOW_CONTENT_BOTTOM_SAFE_INSET_PX, |
|
|
|
|
|
|
|
) |
|
|
|
outer.addWidget(split) |
|
|
|
outer.addWidget(split) |
|
|
|
|
|
|
|
|
|
|
|
def _on_feed_rich_anchor(self, url: QUrl) -> None: |
|
|
|
def _on_feed_rich_anchor(self, url: QUrl) -> None: |
|
|
|
|