Skip to content

Commit 02b09db

Browse files
committed
Merge branch 'main' into search_messages_3#122
2 parents af68741 + 09b3a82 commit 02b09db

36 files changed

+555
-440
lines changed

Cargo.lock

Lines changed: 73 additions & 64 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@ keywords = ["matrix", "chat", "client", "robrix", "robius"]
1212
license = "MIT"
1313
readme = "README.md"
1414
repository = "https://github.com/project-robius/robrix"
15-
version = "0.0.1-pre-alpha-2"
15+
version = "0.0.1-pre-alpha-3"
1616
metadata.makepad-auto-version = "zqpv-Yj-K7WNVK2I8h5Okhho46Q="
1717

1818
[dependencies]
19-
# makepad-widgets = { git = "https://github.com/makepad/makepad", branch = "rik" }
20-
makepad-widgets = { git = "https://github.com/kevinaboos/makepad", branch = "robrix_dock_tab_replace" }
19+
# makepad-widgets = { git = "https://github.com/makepad/makepad", branch = "dev" }
20+
makepad-widgets = { git = "https://github.com/kevinaboos/makepad", branch = "new_makepad_dev_robrix" }
21+
# makepad-widgets = { path = "../makepad/widgets" }
2122

2223
## Including this crate automatically configures all `robius-*` crates to work with Makepad.
2324
robius-use-makepad = "0.1.1"
@@ -50,7 +51,6 @@ tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread"] }
5051
tracing-subscriber = "0.3.17"
5152
unicode-segmentation = "1.11.0"
5253
url = "2.5.0"
53-
emojis = "0.6.1"
5454
bytesize = "1.3.0"
5555
bitflags = "2.6.0"
5656
indexmap = "2.6.0"

src/app.rs

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,13 @@ live_design! {
102102
ui: <Window> {
103103
window: {inner_size: vec2(1280, 800), title: "Robrix"},
104104
caption_bar = {caption_label = {label = {text: "Robrix"}}}
105-
pass: {clear_color: #2A}
105+
// pass: {clear_color: #2A}
106+
pass: {clear_color: #FFFFFF00}
107+
// pass: { clear_color: (THEME_COLOR_BG_APP) }
106108

107109
body = {
110+
padding: 0,
111+
108112
// A wrapper view for showing top-level app modals/dialogs/popups
109113
<View> {
110114
width: Fill, height: Fill,
@@ -130,12 +134,6 @@ live_design! {
130134
// but beneath the verification modal.
131135
new_message_context_menu = <NewMessageContextMenu> { }
132136

133-
// message_source_modal = <Modal> {
134-
// content: {
135-
// message_source_modal_inner = <MessageSourceModal> {}
136-
// }
137-
// }
138-
139137
// We want the verification modal to always show up on top of
140138
// all other elements when an incoming verification request is received.
141139
verification_modal = <Modal> {

0 commit comments

Comments
 (0)