Custom selection style

This commit is contained in:
Moritz Lipp 2010-05-18 00:48:46 +02:00
parent ee182e035a
commit d2973805c0
2 changed files with 2 additions and 1 deletions

View file

@ -56,6 +56,7 @@ static const char DEFAULT_TEXT[] = "[No Name]";
#define SHOW_SCROLLBARS 0
#define ADJUST_OPEN ADJUST_BESTFIT
#define RECOLOR_OPEN 0
#define SELECTION_STYLE POPPLER_SELECTION_GLYPH
/* shortcuts */
Shortcut shortcuts[] = {

View file

@ -3209,7 +3209,7 @@ cb_view_button_release(GtkWidget* widget, GdkEventButton* event, gpointer data)
/* get selected text */
g_static_mutex_lock(&(Zathura.Lock.pdflib_lock));
char* selected_text = poppler_page_get_text(
Zathura.PDF.pages[Zathura.PDF.page_number]->page,POPPLER_SELECTION_GLYPH,
Zathura.PDF.pages[Zathura.PDF.page_number]->page,SELECTION_STYLE,
&rectangle);
if(selected_text)