set vertical alignment to start

This commit is contained in:
yggverse 2024-09-12 09:21:49 +03:00
parent 2275be5f95
commit c240c9faee
4 changed files with 10 additions and 0 deletions

View File

@ -5,6 +5,10 @@ using namespace app::browser::main::tab::page::content::text;
Gemini::Gemini( Gemini::Gemini(
const Glib::ustring & GEMTEXT const Glib::ustring & GEMTEXT
) { ) {
set_valign(
Gtk::Align::START
);
set_wrap( set_wrap(
true true
); );

View File

@ -2,6 +2,7 @@
#define APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_GEMINI_HPP #define APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_GEMINI_HPP
#include <glibmm/ustring.h> #include <glibmm/ustring.h>
#include <gtkmm/enums.h>
#include <gtkmm/label.h> #include <gtkmm/label.h>
namespace app::browser::main::tab::page::content::text namespace app::browser::main::tab::page::content::text

View File

@ -5,6 +5,10 @@ using namespace app::browser::main::tab::page::content::text;
Plain::Plain( Plain::Plain(
const Glib::ustring & TEXT const Glib::ustring & TEXT
) { ) {
set_valign(
Gtk::Align::START
);
set_wrap( set_wrap(
true true
); );

View File

@ -2,6 +2,7 @@
#define APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_PLAIN_HPP #define APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_PLAIN_HPP
#include <glibmm/ustring.h> #include <glibmm/ustring.h>
#include <gtkmm/enums.h>
#include <gtkmm/label.h> #include <gtkmm/label.h>
namespace app::browser::main::tab::page::content::text namespace app::browser::main::tab::page::content::text