Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Library/Library.blp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ Adw.PreferencesWindow library {

Adw.PreferencesPage {
Adw.PreferencesGroup {
Picture picture_illustration {
can-shrink: false;
margin-bottom: 30;
}

Label {
label: _("Learn, Test, Remix");
styles ["title-1"]
Expand Down
5 changes: 5 additions & 0 deletions src/Library/Library.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,15 @@ import Window from "../window.js";
import resource from "./Library.blp";
import { createSessionFromDemo } from "../sessions.js";

import illustration from "./library.svg";

export default function Library({ application }) {
const builder = Gtk.Builder.new_from_resource(resource);
const window = builder.get_object("library");

const picture_illustration = builder.get_object("picture_illustration");
picture_illustration.set_resource(illustration);

let last_selected;

const demos = getDemos();
Expand Down
Loading